.logo {
    display: none;
}

.header-icon {
    width: fit-content;
    padding: 12px;
    background: var(--primary);
    border-radius: 14px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-heading {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-label {
    display: block;
    font-size: var(--text-s);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--primary);
    border-radius: 14px;
    font-size: var(--text-m);
    background: transparent;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-icon {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.link-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    width: 100%;
    padding: 1.5rem;
}

.btn-secondary {
    margin-top: 1rem;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {

    .logo {
        display: block;
    }

    main form {
        max-width: 500px;
        margin: auto;
    }

    .btn {
        max-width: 300px;
        margin: auto;
    }

    .btn-secondary {
        margin-top: 1rem;
    }

    .form-icon {
        bottom: 1.2rem;
    }
}