body{
    background-image: url("../../media/login/1.jpeg");
    background-repeat:no-repeat;
    background-size: cover;
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
}

form h2{
    color: #616161;
    font-weight: 500;
}

input{
    background-color: #fdfdfd!important;
    border-radius: 25px;
    padding: 15px;
    width: 90%;
}

button{
    background-color: #30ABAF;
    transition: 0.5s;
    padding: 13px 15px;
    border-radius: 25px;
    font-size: large;
    font-weight: 300;
    cursor: pointer;
}

button:hover{
    background-color: #30af67;
    transition: 0.5s;
}