@font-face {
    font-family: 'SHK_Dzeragir';
    src: url('../fonts/SHK_Dzeragir.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'times'; /* Имя вашего шрифта */
    src: url('../fonts/times.ttf') format('opentype'); 
    font-weight: 400;
    font-style: normal;
}
body {
    margin: 0;
    padding: 0;
    font-family: times;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head_1 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head_1_1 {
   
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 10px #e0737e;
    max-width: 400px;
    width: 90%;
}

.form_sign_in {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #e0737e;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family:times;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #e0737e;
    box-shadow: 0 0 5px #e0737e;
    outline: none;
}

input[type="submit"] {
    padding: 12px;
    font-size: 16px;
    background-color: #e0737e;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family:times;
}

input[type="submit"]:hover {
    background-color: #e99ea5;
}

@media (max-width: 600px) {
    .head_1_1 {
        padding: 20px;
        max-width: 90%;
    }

    input[type="text"],
    input[type="password"],
    input[type="submit"] {
        font-size: 14px;
        padding: 10px;
    }

    .input_container {
        gap: 10px;
    }

    img {
        width: 100%;
        height: auto;
    }
}