.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: right;
    margin-bottom: 2rem;
}

.btn {
    width: 100%;
}

.btn-secondary {
    margin-top: 1rem;
}

.register-link {
    color: var(--primary);
    text-align: center;
    margin: 2rem 0;
    text-decoration: none;

    a {
        color: var(--secondary);
    }
}

.login-advice {
    text-align: center;
    font-size: var(--text-xs);
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {

    form {
        max-width: 500px;
        margin: auto;
    }

    .form-icon {
        bottom: 1.2rem;
    }
}