.container-lg {
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heading-lg {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtext-lg {
    font-size: 14px;
    margin-bottom: 25px;
    color: #333;
}

.form-lg {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-lg {
    width: 100%;
    padding: 14px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    outline: none;
}

.input-lg:focus {
    border-color: #000;
}

.password-box-lg {
    position: relative;
}

.forgot-link-lg {
    font-size: 13px;
    color: #555;
    text-decoration: none;
}

.btn-lg {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    padding: 14px;
    background: linear-gradient(to right, #000, #333);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    width: 100%;
}

.btn-lg:hover {
    opacity: 0.85;
}

.signup-text-lg {
    font-size: 14px;
    color: #444;
}

.signup-link-lg {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}
@media (max-width: 480px) {
    .form-lg {
        width: 96%;
    }
}
