* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    height: 100vh;
}

.login_container {
    background: #22a3d6;
    background: radial-gradient(circle, rgba(34, 163, 214, 1) 0%, rgba(144, 220, 250, 1) 50%, rgba(34, 163, 214, 1) 100%);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login_container .login_content form {
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: rgb(244, 253, 255);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 2px 2px 10px rgb(121, 201, 255);
    min-width: 300px;
}

.login_container .login_content form h1 {
    padding-bottom: 20px;
    color: #252829;
}

.login_container .login_content form input {
    height: 40px;
    border-radius: 5px;
    border: 1px #696969 solid;
    padding: 0px 8px 0px 8px;
}

.placeholder {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: static;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(5px, -30px);
    border-radius: 20px;
}

.hidden_pass {
    font-size: 18px;
    background-color: #22a3d600;
    border: none;
    width: max-content;
    position: absolute;
    transform: translate(260px, 125px);
}

#RegForm .hidden_pass {
    /*Для пк*/
    font-size: 18px;
    background-color: #22a3d600;
    border: none;
    width: max-content;
    position: absolute;
    transform: translate(310px, 185px);
}

.placeholder_focus {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: static;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(5px, -50px);
    border-radius: 20px;
}

#butLogin, #butReg, #butGuestLogin {
    background-color: #22a3d6;
    border: 0;
    color: white;
    height: 40px;
    border-radius: 10px;
    margin-top: 20px;
}

p {
    padding: 0;
    margin-top: 15px;
    margin-bottom: 5px;
}

p a {
    border: 0;
    text-decoration: none;
    color: #22a3d6;
    cursor: pointer;
}

span a {
    border: 0;
    text-decoration: none;
    color: #22a3d6;
    cursor: pointer;
}

#butReg {
    font-size: 14px; 
}

/* Message */
.message {
    padding: 10px;
    border-radius: 5px;

    position: fixed;
    max-width: 80%;
    top: 0;
    right: 0;

    margin: 5px;
    animation-name: notification;
    animation-duration: 1s;

    text-align: center;
    display: none;
}

.message.error {
    background: #ffe6e6;
    color: #d63031;
    border: 1px solid #ff7675;
}

.message.success {
    background: #e6f7e6;
    color: #27ae60;
    border: 1px solid #58d68d;
}

/* ФИО БЛОК */
.fio_container {
    display: flex;
    margin-bottom: 20px;
    max-width: 350px;
    gap: 5px;
}

.fio_container input {
    margin: none;
    width: calc(100% - 40px);
}

/* FIO-PLACEHOLDER */

.placeholder_name {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: absolute;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(182px, 12px);
    border-radius: 20px;
}

.placeholder_surname {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: absolute;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(5px, 12px);
    border-radius: 20px;
}

.placeholder_name_focus {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: absolute;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(182px, -8px);
    border-radius: 20px;
}

.placeholder_surname_focus {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: absolute;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(5px, -8px);
    border-radius: 20px;
}


/* АНИМАЦИИ */
@keyframes notification {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 375px) {
.login_container .login_content form {
    width: 300px;
}


.placeholder_name {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: absolute;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(158px, 12px);
    border-radius: 20px;
}

.placeholder_name_focus {
    background-color: white;
    color: #696969;
    font-weight: bold;
    position: absolute;
    width: max-content;
    padding: 0px 8px 0px 8px;
    font-size: 14px;
    transform: translate(158px, -8px);
    border-radius: 20px;
}

#RegForm .hidden_pass {
    font-size: 18px;
    background-color: #22a3d600;
    border: none;
    width: max-content;
    position: absolute;
    transform: translate(260px, 185px);
}

}