* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: #003366;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: scale(1.02);
}

.title {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 1.8em;
}

.input-group {
    margin-bottom: 30px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.15);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

.remember-forgot a {
    color: #00ff88;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: #00ff88;
    border: none;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #00cc6a;
}

.register-link {
    text-align: center;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.6);
}

.register-link a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
}

.social-login {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #00ff88;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
}