@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {

    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}
header {
    height: 70px;
    opacity: 0.5;
    background-color: rgb(38, 11, 56);
}



.form-inner {
    padding: 50px;
    display: flex;
    flex-direction: column;
}    
.decor {
    position: relative;
    max-width: 400px;

    background: white;
    border-radius: 30px;
    opacity: 0.8;
}
.form-inner input, .form-inner textarea {
    display: block;
    padding: 0 20px;
    margin-bottom: 10px;
    background: #E9EFF6;
    line-height: 40px;
    border-width: 0;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
}
.form-inner button {
    margin-top: 30px;
    background: #6a3da5;
    color: white;
    font-size: 14px;
    outline: none;
    height: 45px;
    border-radius: 10px;
 }
 .form-inner button:hover {
   margin-top: 30px;
   background: #522e81;
   color: white;
   font-size: 14px;   
}
p {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 0px);
    background: linear-gradient(rgb(60 0 88), rgba(106, 27, 111, 0.742));
    background-repeat: no-repeat;
    background-size: cover;
}

.logged {
    z-index: 5;
    border-radius: 10px;
    position: absolute;
    height: 100px;
    width: 250px;
    background: #fff;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.backdrop {
    z-index: 3;
    position: absolute;
    height: 100vh;
    width: 100vw;
    filter: blur(1px);
    background: rgb(38, 11, 56, 0.6);
    top: 0;
}
.disabled {
    display: none;
    pointer-events: none;
    opacity: 0;
}
