body { font-family: 'Rajdhani', sans-serif; background: #0a0a1a; color: #fff; min-height: 100vh; display: flex; align-items: center; justify-content: center; } .admin-login-container { background: rgba(15, 25, 45, 0.7); border-radius: 15px; box-shadow: 0 0 30px rgba(0, 150, 255, 0.3); border: 1px solid rgba(0, 150, 255, 0.3); padding: 40px; width: 100%; max-width: 450px; } .admin-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 30px; } .logo-img { width: 120px; height: 120px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(0, 150, 255, 0.5)); } .logo-symbol { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #0084ff, #7f00ff); display: flex; justify-content: center; align-items: center; font-family: 'Audiowide', cursive; color: white; font-size: 28px; margin-right: 15px; box-shadow: 0 0 15px rgba(0, 150, 255, 0.5); } .logo-text { font-family: 'Audiowide', cursive; font-size: 24px; background: linear-gradient(90deg, #0084ff, #00f0ff); -webkit-background-clip: text; background-clip: text; color: transparent; } h1 { text-align: center; margin-bottom: 30px; color: #e6f0ff; } .form-group { margin-bottom: 25px; } .form-group label { display: block; margin-bottom: 8px; color: rgba(230, 240, 255, 0.8); } .form-group input { width: 100%; padding: 15px; background: rgba(10, 20, 40, 0.5); border: 1px solid rgba(0, 150, 255, 0.3); border-radius: 5px; color: #e6f0ff; font-family: 'Rajdhani', sans-serif; font-size: 16px; } .password-field-container { position: relative; } .password-toggle { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); cursor: pointer; color: rgba(0, 150, 255, 0.7); transition: all 0.3s ease; background: rgba(10, 20, 40, 0.3); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; } .password-toggle:hover { color: #00f0ff; background: rgba(10, 20, 40, 0.5); box-shadow: 0 0 10px rgba(0, 240, 255, 0.2); } .form-group input:focus { outline: none; border-color: #00f0ff; box-shadow: 0 0 10px rgba(0, 240, 255, 0.2); } .admin-button { width: 100%; padding: 15px; background: linear-gradient(90deg, #0084ff, #00f0ff); color: white; border: none; border-radius: 5px; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 18px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(0, 150, 255, 0.2); } .admin-button:hover { box-shadow: 0 0 25px rgba(0, 150, 255, 0.4); transform: translateY(-2px); } .back-link { text-align: center; margin-top: 30px; } .back-link a { color: #00f0ff; text-decoration: none; font-size: 16px; transition: all 0.3s ease; } .back-link a:hover { text-decoration: underline; } .error-message { color: #ff3b5c; text-align: center; margin-bottom: 20px; font-size: 14px; }