

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a002a, #2e004f);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    color: white;
}

.profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 auto 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.profile-circle {
    background: rgb(255, 255, 255);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #6a00ff;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #8a2eff;
    transform: scale(1.05);
}

.error {
    color: #ff4d4d;
}

@media (max-width: 500px) {
    .login-container {
        padding: 20px;
    }
}