body {
    background: linear-gradient(#8800ff 0%, #9d00ff 30%, #e379f3 100%);
    background-color: grey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.css-navbar {
    background-color: rgba(0, 0, 0, 0.3);
}
.log {
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: medium;
    text-decoration: none;
}
.login-box {
    color: #fff;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0 2px 1px black;
    position: relative;
    width: 280px;
    height: 380px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    border: 3px solid rgb(224, 224, 224);
    backdrop-filter: blur(5px);
    padding: 20px;
    animation: shadow 4s infinite alternate-reverse;
}
@keyframes shadow{
    0% {
        box-shadow: 0px 0px 0px rgba(255, 255, 255, 0.9);
    }
    100% {
        box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.9);
    }
}
.input-box {
    height: 45px;
    width: 100%;
    border-bottom: 2px solid white;
}
.input-box input {
    height: 50px;
    width: 97%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    color: #fff;
}
.forgot {
    font-size: 12px;
    text-shadow: none;
    margin-top: 15px;
}
.return {
    text-shadow: none;
}
.submit {
    width: 100%;
    border-radius: 50px;
    margin-bottom: 15px;

}
.social-media {
    width: 23%;
    border-radius: 20px;
    font-size: 15px;
}