
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8f9fa;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .login-card {
            width: 100%;
            max-width: 450px;
            border: none;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .btn-primary {
            background-color: #ff6600;
            border: none;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #e65c00;
            transform: translateY(-2px);
        }
        .form-control:focus {
            border-color: #ff6600;
            box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.15);
        }
        .login-header h2 {
            color: #ff6600;
            font-weight: 700;
        }
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            color: #adb5bd;
            margin: 20px 0;
        }
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #dee2e6;
        }
        .divider:not(:empty)::before { margin-right: .5em; }
        .divider:not(:empty)::after { margin-left: .5em; }
        
        .btn-google {
            border: 1px solid #dee2e6;
            background-color: white;
            color: #444;
            transition: all 0.3s;
        }
        .btn-google:hover {
            background-color: #f8f9fa;
            border-color: #ced4da;
        }
