body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d0d1a;
    font-family: 'Arial', sans-serif;
}
.login-container {
    position: relative;
    width: 350px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.login-container h2 {
    color: #fff;
    margin-bottom: 20px;
}
.login-container label {
    display: block;
    color: #b3b3b3;
    margin-bottom: 5px;
    text-align: left;
}
.login-container input[type="text"],
.login-container input[type="password"] ,
.login-container input[type="email"],
.login-container input[type="mobile"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
}
.login-container input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}
.login-container .social-login {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.login-container .social-login button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container .social-login button i {
    margin-right: 10px;
}
.background-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.background-circle.blue {
    width: 300px;
    height: 300px;
    background: #1e90ff;
    top: -100px;
    left: -100px;
}
.background-circle.orange {
    width: 200px;
    height: 200px;
    background: #ff4500;
    bottom: -50px;
    right: -50px;
}
.social-login label{
    display: block;
    color: #b3b3b3;
    margin-bottom: 5px;
    margin-top: 10px;
    text-align: left;
}
.social-login-btn{
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
} 
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d0d1a;
    font-family: 'Arial', sans-serif;
}
