.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: var(--white);
}
.login-title {
    font-weight: 700;
    font-size: 30px;
}
.login-subtitle {
    font-size: 14px;
    color: var(--dark);
}

.custom-input {
    position: relative;
    margin-bottom: 35px;
}

.custom-input input {
    width: 100%;
    padding: 14px 14px 14px 14px;
    border: 1px solid #d4d7e1;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.custom-input label {
    position: absolute;
    top: 0;
    left: 12px;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease all;
    background: white;
    padding: 0 4px;
}

.custom-input input:focus {
    border-color: #14b8a6;
}

.custom-input input:focus + label,
.custom-input input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 14px;
    color: #14b8a6;
}

.btn-login {
    background-color: var(--info);
    color: var(--dark);
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
    padding: 14px;
}

.btn-login:hover {
    background-color: #0f9d92;
}

.forgot-password {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
}

.register-text {
    font-size: 14px;
    color: var(--secondary);
}