body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-family: 'poppins', sans-serif; 
    background-color: #000;
    
}
h2 {
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 20px;
}
.outer-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.title {
    position: absolute;
    top: 20px;
    color: #f5f5f5;
    left: 180px;
}
.login-form {
    height: 400px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
    position: relative;
    background-color: #000;
}

.login-form::after, .login-form::before {
    content: '';
    position: absolute;
    background-image: conic-gradient(#0000ff,#e100ff, #0000ff);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding: 5px;
    z-index: -1;
}
.login-form::before {
    filter: blur(2rem);
    opacity: 0.5;
}

.input-box {
    margin-top: 30px;
    justify-self: center;    
}
input {
    width: 300px;
    height: 40px;
    border-radius: 20px;
    border: 2px #f5f5f5 solid;
    background-color: #000;
    color: white;
    font-size: 1.3rem;
    padding: 5px;
}

.submit:hover {
    background-color: #d209d2;
    color: #000;
    cursor: pointer;
}
button {
    width: 150px;
    height: 40px;
    border-radius: 20px;
    border: 2px #f5f5f5 solid;
    background-color: #000;
    color: white;
    font-size: 1.7rem;
    padding: 5px;
    margin-top: 30px;
}
.error {
    color: red;
    text-align: center;
    margin-top: 10px;
}
a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
    .login-form {
        height: 300px;
        width: 300px;
    }

    input {
        width: 200px;
        height: 30px;
        font-size: 1rem;
    }
    button {
        width: 100px;
        height: 30px;
        font-size: 1.2rem;
    }
    .title {
        left: 100px;
        font-size: 1.2rem;
    }
    
}