* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            background-image: linear-gradient(120deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Efeitos amarelos no fundo */
        .bg-accent {
            position: absolute;
            border-radius: 50%;
            background-color: #FFD700;
            opacity: 0.15;
            z-index: -1;
            filter: blur(30px);
        }
        
        .bg-accent-1 {
            width: 400px;
            height: 400px;
            top: -150px;
            right: -150px;
        }
        
        .bg-accent-2 {
            width: 350px;
            height: 350px;
            bottom: -100px;
            left: 5%;
        }
        
        .bg-accent-3 {
            width: 250px;
            height: 250px;
            top: 15%;
            left: -100px;
        }
        
        .bg-accent-4 {
            width: 180px;
            height: 180px;
            bottom: 25%;
            right: 15%;
        }
        
        .bg-accent-5 {
            width: 120px;
            height: 120px;
            top: 40%;
            right: 30%;
            opacity: 0.1;
        }
        
        .login-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 400px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .logo-container img {
            max-width: 200px;
            height: auto;
        }
        
        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #FFD700;
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .login-header h1 {
            color: #333;
            margin-bottom: 10px;
        }
        
        .input-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
        }
        
        .input-group input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        .input-group input:focus {
            outline: none;
            border-color: #FFD700;
        }
        
        .forgot-password {
            text-align: right;
            margin-bottom: 20px;
        }
        
        .forgot-password a {
            color: #777;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .forgot-password a:hover {
            color: #FFD700;
        }
        
        .login-button {
            width: 100%;
            padding: 15px;
            background-color: #FFD700;
            border: none;
            border-radius: 5px;
            color: #333;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .login-button:hover {
            background-color: #F4C430;
        }
        
        .register-link {
            text-align: center;
            margin-top: 20px;
            color: #777;
            font-size: 14px;
        }
        
        .register-link a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .register-link a:hover {
            color: #FFD700;
        }
        
        .alert {
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            text-align: center;
        }
        
        .alert-danger {
            background-color: #ffeeee;
            border: 1px solid #ffcccc;
            color: #cc0000;
        }
        
        .alert-success {
            background-color: #eeffee;
            border: 1px solid #ccffcc;
            color: #00cc00;
        }
        
        .yellow-accent {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #FFD700;
            border-radius: 50%;
            opacity: 0.3;
        }
        
        .accent-1 {
            top: 20px;
            right: 20px;
        }
        
        .accent-2 {
            bottom: 40px;
            left: 30px;
        }
        
        .accent-3 {
            bottom: 70px;
            right: 70px;
            width: 15px;
            height: 15px;
        }