/* Reset browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #f4a74e, #9c345a);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
}

.form-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

h2 {
    color: white;
    margin-bottom: 30px;
}

.input-box {
    position: relative;
    margin-bottom: 30px;
}

.input-box input {
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    outline: none;
    font-size: 18px;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
    transition: 0.3s ease;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
    top: -10px;
    color: #eaff00;
    font-size: 14px;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #ff8a00;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 20px;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #e52e71;
}
.input-box {
    position: relative;
}
.input-box input {
    width: 100%;
    padding-right: 40px; /* Make room for the eye icon */
}
.input-box .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #555;
}