﻿body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e9f1ff);
}

.order-login-section {
    padding: 60px 0;
}

.order-login-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

    .order-login-card::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(13, 110, 253, 0.12);
        border-radius: 50%;
        top: -200px;
        right: -200px;
    }

    .order-login-card * {
        position: relative;
        z-index: 1;
    }

.login-brand {
    text-align: center;
    margin-bottom: 20px;
}

    .login-brand img {
        width: 140px;
    }

.order-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.order-subtitle {
    color: #6c757d;
    margin-bottom: 20px;
}

.form-group-modern label {
    font-weight: 600;
    color: #333;
}

.modern-input {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e4e7ea;
    transition: 0.3s ease;
}

    .modern-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13,110,253,0.15);
    }

.order-btn {
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    padding: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

    .order-btn:hover {
        background: #084298;
        transform: translateY(-2px);
    }

.forgot-link {
    color: #0d6efd;
    text-decoration: none;
}

    .forgot-link:hover {
        text-decoration: underline;
    }

.register-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

    .register-link:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .order-login-card {
        padding: 25px;
    }

    .order-title {
        font-size: 24px;
    }
}
