/* ===== Topbar ===== */
.topbar {
    background-color: #1e9cf0;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* ===== General Body ===== */
body {
    background: linear-gradient(to right, #f6d365, #fda085);
    font-family: 'Poppins', sans-serif;
}

/* ===== Login Wrapper ===== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Login Card ===== */
.login-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease-in-out;
}

.login-card:hover {
    transform: translateY(-5px);
}

/* ===== Login Header ===== */
.login-header {
    margin-bottom: 2rem;
    text-align: center;
}

.login-header h3 {
    font-weight: 600;
    color: #fd7e14;
}

/* ===== Form Controls ===== */
.form-control:focus {
    border-color: #fd7e14;
    box-shadow: 0 0 0 0.2rem rgba(253, 126, 20, 0.25);
}

/* ===== Buttons ===== */
.btn-primary {
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.btn-primary:hover {
    background-color: #e96a0a;
    border-color: #e96a0a;
}

.login-btn {
    margin: 10px 0;
    padding: 12px;
    transition: 0.50s;
    background-color: #1e9cf0;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    border: none;
}

.login-btn:hover {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    background-color: #17ec03;
}

/* ===== Form Check Labels ===== */
.form-check-label {
    font-size: 0.9rem;
}

/* ===== Toggle Password Button ===== */
.toggle-password-btn {
    border: 1px solid #ced4da;
}

/* ===== Left Image ===== */
.left-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .left-section {
        display: none;
    }

    .content {
        margin-top: 150px;
        display: block;
        align-items: center;
        justify-content: center;
    }

    footer {
        text-align: center;
        padding: 10px 0;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }
}
