*
{
    margin: 0;
    padding: 0;
}

@font-face
{
    font-family: "Roboto";
    src: url("fonts/Roboto/Roboto-Regular.ttf");
}
section
{
    font-family: "Roboto";
    width: 100%;
    min-height: 100vh;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("images/wallpaperflare.com_wallpaper.jpg");
    background-position: center;
}
.form
{
    padding: 30px 0;
    width: 400px;
    height: 70%;
    position: relative;
    text-align: center;
    border-radius: 20px;
    border: 2px solid #b7b7b7;
    backdrop-filter: blur(5px);
}
H2
{
    color: white;
    margin-bottom: 30px;
    font-size: 2em;
}
form
{
    position: relative;
    width: 90%;
    margin-left: 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.form__item {
    display: flex;
    align-items: center;
    flex-direction: column;


}
.row {
    position: relative;
    margin: 10px 0;
    width: 310px;
    border-bottom: 2px solid white;
}
.row label
{
    color: white;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .5s;
}
.row input
{
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 35px 0 5px;
    font-size: 1em;
    color: white;
}
input:focus ~ label,
input:valid ~ label
{
    top: -5px;
}

.pod ~ label {
    transform: translateY(-50%);
    top: -5px;
}
.row ion-icon
{
    position: absolute;
    right: 10px;
    color: white;
    font-size: 1.2em;
    top: 20px;
}
.submitBotton
{
    margin-top: 30px;
    width: 70%;
    height: 40px;
    border-radius: 20px;
    font-size: 1em;
    font-weight: 700;
    outline: none;
    border: none;
    cursor: pointer;
    background-size: 150% 100% !important;
    background-position: 100% 0 !important;
    transition: background-position .5s !important;
    background: -webkit-linear-gradient(45deg, rgb(255, 0, 79) 6%, rgb(255, 0, 236) 40%, rgb(50, 0, 255));
    background: -moz-linear-gradient(45deg, rgb(255, 0, 79) 6%, rgb(255, 0, 236) 40%, rgb(50, 0, 255));
    background: linear-gradient(45deg, rgb(255, 0, 79) 6%, rgb(255, 0, 236) 40%, rgb(50, 0, 255));
    color: white;
}
.submitBotton:hover
{
    background-position: 0 0 !important;
}

.error {
    color: red;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s; /* выставляется желаемая задержка */
    -webkit-text-fill-color: white !important;
}


#notify {
    font-size: 16px;
    color: red;
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 10px;
}

