*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    background-color: #00000000;
    color: white;
    padding: 10px 0;
    text-align: center;
}
body{
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    background: url('../src/bg.gif') no-repeat center center fixed;
    background-color: black;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container form{
    background-color: #ffffff4a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.573);
    width: 400px;
}
.container form h2{
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    color: white;
}
.container form input[type="text"],
.container form input[type="password"],
.container form input[type="email"]
{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.container form input[type="submit"]{
    background-color: #e34949;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}   
.container form input[type="submit"]:hover{
    background:linear-gradient(to bottom, #e34949, #2e2e2e);
    transition: 0.3s ease-in-out;
}
.container form .error{
    color: red;
    text-align: center;
    margin-top: 10px;
}
.container form .success{
    color: green;
    text-align: center;
    margin-top: 10px;
}
.container label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}
.logo{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.34);
    position: absolute;
    margin: 16% 42.5% ;
    z-index: -1;
}
.logo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.3;
}
.container form:hover{
    background-color: #fffcfc;
    box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0);
    transition: 0.3s ease-in-out;
}
.container form:hover label{
    color: black;
}
.container form:hover h2{
    color: black;
}

@media (max-width: 768px) {
    .container form{
        width: 90%;
    }
    .logo{
        margin-top: 90%;
        margin-left: 35%;
        width: 120px;
        height: 120px;
    }
}