* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: url("Faris.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glass card */
.login-container {
    width: 380px;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    color: #fff;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 25px;
    font-weight: 600;
}

/* Input */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 14px;
}

.input-group input::placeholder {
    color: #eaeaea;
}

.input-group i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

/* Options */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
}

.options a {
    color: #fff;
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: #ffffff;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.login-btn:hover {
    background: #e6e6e6;
}

/* Register */
.register-text {
    margin-top: 18px;
    font-size: 13px;
}

.register-text a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.register-text a:hover {
    text-decoration: underline;
}