
.registr{
    background-image: url(../../images/login/20.jpg);
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    background-size: cover;
    height: 100vh;
    overflow-y: hidden;
  
}
.registr-title{
    color: white;
    text-align: center;
    margin-bottom: 20px;
}
.registr-container{
    margin: 15px;
    max-width: 300px;
    height: 400px;
    width: 100%;
    position: relative;
    top: 100px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}
.registr-container::before{
    content: '';
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}
.registr-form{
    width: 100%;
    margin: 0 auto;
}
#email, #password, #name{
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    height: 30px;
    border-radius: 5px;
    outline: none;
    color: white;
    padding: 0 5px;
    margin-top: 10px;
    margin-bottom: 15px;

}
label{
    color: white;
}
.registr-btn{
    width: 100%;
    height: 40px;
    padding: 0 5px;
    margin-top: 25px;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    cursor: pointer;
}