/* General Styling */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } body { background-color: #f4f4f9; display: flex; justify-content: center; align-items: center; min-height: 100vh; } /* Wrapper Styling */ .wrapper { width: 100%; max-width: 400px; background-color: #ffffff; padding: 40px; border-radius: 10px; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); text-align: center; } h1 { font-size: 32px; margin-bottom: 20px; color: #333; } /* Input Box Styling */ .input-box { position: relative; margin-bottom: 20px; } .input-box input { width: 100%; padding: 15px 40px 15px 20px; font-size: 18px; border-radius: 50px; border: 1px solid #ddd; outline: none; background-color: #f9f9f9; } .input-box i { position: absolute; top: 50%; left: 10px; transform: translateY(-50%); font-size: 20px; color: #777; } /* Remember me and Forgot password section */ .remember-forgot { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 14px; color: #777; } .remember-forgot label { display: flex; align-items: center; } .remember-forgot a { color: #3498db; text-decoration: none; } .remember-forgot a:hover { text-decoration: underline; } /* Button Styling */ .btn { width: 100%; padding: 15px; background-color: #3498db; color: #fff; border: none; border-radius: 50px; font-size: 18px; cursor: pointer; transition: background-color 0.3s ease; } .btn:hover { background-color: #2980b9; } /* Register link section */ .register-link { margin-top: 20px; font-size: 14px; color: #777; } .register-link a { color: #3498db; text-decoration: none; } .register-link a:hover { text-decoration: underline; }