@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(135deg, #a8e6cf 0%, #d4a3eb 100%); } .login-form { background: rgba(0, 0, 0, 0.9); padding: 40px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); width: 400px; color: #fff; backdrop-filter: blur(10px); text-align: center; } .login-form .text { font-size: 2em; color: #a8e6cf; text-shadow: 0 0 10px rgba(168, 230, 207, 0.3); margin-bottom: 40px; } .login-form .field { margin-bottom: 30px; position: relative; } .login-form .field input { width: 100%; padding: 12px 15px 12px 40px; background: rgba(255, 255, 255, 0.1); border: 2px solid transparent; border-radius: 8px; color: #fff; font-size: 16px; transition: all 0.3s ease; } .login-form .field input:focus { outline: none; border-color: #a8e6cf; background: rgba(168, 230, 207, 0.1); box-shadow: 0 0 10px rgba(168, 230, 207, 0.2); } .login-form .field .fas { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #d4a3eb; } .login-button { width: 100%; padding: 12px; background: linear-gradient(45deg, #a8e6cf, #d4a3eb); border: none; border-radius: 8px; color: #000; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .login-button:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(168, 230, 207, 0.4); } .login-form .link { margin-top: 25px; text-align: center; } .login-form .link a { color: #d4a3eb; text-decoration: none; font-size: 14px; transition: color 0.3s ease; } .login-form .link a:hover { color: #a8e6cf; }