:root {
    --green: #28a745;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Background Image */
.auth-wrap {
    font-family: 'Outfit', sans-serif !important;
    position: relative;
    background: url('/assets/images/bg-image.webp') !important;
    position: relative;
    background-blend-mode: color;
    background-position: center;
    background-color: #00000087 !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Dark overlay */
a.logo-main img {
    display: block;
    width: 114px;
    height: 102px;
    object-fit: cover;
}
/* Glass Card */
.auth-card {
    width: 100%;
    max-width: 500px;
    background: #fff !important;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Title */
.auth-title {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
}

/* Divider */
.auth-sub {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

/* Labels */
.custom-form label {
    display: block;
    color: #000000cf;
    font-size: 14px;
    margin: 0 0 2px;
    line-height: 1.5;
    font-weight: 600;
}

/* Inputs */
.form-control {
    width: 100%;
    color: #807c7c;
    padding: 10px 12px;
    border-radius: 4px;
    background: #f2f0eb;
    border: #ffdead00;
}

.form-control::placeholder {
    color: #444444;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
}

/* Autofill fix */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

/* Button */
.form-actions .btn-primary {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    display: block;
    margin-top: 20px;
}
.remember-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
label.form-check-label {
    color: #636464;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin: 0px !important;
    line-height: normal !important;
}
/* Links */
.forgot-link {
    color: #636464;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;

}

/* Error */
.invalid-feedback {
    color: #ff6b6b;
}

/* Responsive */
@media(max-width:480px) {
    .auth-card {
        padding: 20px;
    }
    .auth-wrap{
padding: 10px;
    }
}

/* Hide navbar */
.navbar {
    display: none !important;
}