body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    outline: none;
}

input[type="submit"] {
    width: 95%;
    background: #00ffb3;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

input[type="submit"]:hover {
    background: #fff;
    color: #2575fc;
}

a {
    color: #ffeb3b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
