﻿@import url('../css2.html');



*{
    padding: 0;
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
}

:root{
    
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

button {
    width: 100%;
    height: 62px;
    background-color: #1974D2;
    border: none;
    margin-top: 45.5px;
    font-weight: 600;
    line-height: 15px;
    font-size: 19px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    animation: pulse 1.5s infinite; /* Додано пульсацію */
}

button:hover {
    background-color: #135CAE;
    animation: none; /* Вимикаємо анімацію при наведенні */
}



.h12{
    text-align: center;
}
.h22{
    padding: 10px;
    margin: auto;
}

.main{
    max-width: 404px;
    height: 100%;
    margin: auto;
    margin-top: 1px;
}
.error {
    border-bottom: 1px solid red;
}
.error-text {
 color:  red;
}

.img__tink{
    display: flex;
    
    padding-bottom: 17px;
}

h1{
    text-align: center;
    font-size: 27px;
    line-height: 32px;
    padding-bottom: 15px;
    
}
h2{
    margin-top: 15px;
    

}

.main > p{
    color: #1974D2;
    font-size: 23px;
    text-align: center;
    padding-left: 20.79px;padding-right: 20.91px;padding-top: 9.6px;padding-bottom: 9.6px;
    background-color: #ADD8E6;
    width: 197.7px;
    margin: 0 auto;
    border-radius: 14px;
}

form{
    margin-top: 41px;
}

form > input{
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: none;
    border-color: #C2C2C2;
}

form > input[placeholder]{
    font-size: 16px;
    line-height: 32px;
    transition: .3s;
    color: black;
    margin-top: 23.07px;
}

form > input[placeholder]:focus{
    outline: none !important;
}

input[type=checkbox]{
    width: 25px;
    height: 25px;
    background-color: #F2F2F2;
    outline: none !important;
    border-radius: 5px;
    cursor: pointer;
}

/* form > input[type="tel"]{
    border-right: 1px solid #C2C2C2;
} */

.radio__and__text{
    display: grid;
    grid-template-columns: 1fr 10fr;
    margin-top: 25px;
}

.left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.plusses{
    margin-top: 40px;
}

.box_for_plusses{
    display: grid;
    grid-template-columns: 1fr 10fr;
    margin-top: 15px;
}

.for_img{
    display: flex;
    justify-content: flex-start;
    align-self: center;
}

.for_text{
    text-align: left;
    display: flex;
    align-items: center;
}

.main > button{
    width: 100%;
    height: 62px;
    background-color: #1974D2;
    border: none;
    margin-top: 45.5px;
    font-weight: 600;
    line-height: 15px;
    font-size: 19px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

/* .main > button:hover{
    opacity: .8; Если по кайфу будет то можно раскомментировать
} */

@media (max-width:414px){
    .main{
        max-width: 90%;
    }
    form{
        margin-top: 11px;
    }
    

}