body {
    background-color: rgb(220, 220, 220);
    font-size: 20px;
  }

h2 {
    text-align: center;
    margin-top: 23%;
}

input[type='password'], input[type='text'] {
    order: 2;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    width: 30vh; 
}

p {
    box-sizing: border-box;
    margin: 0 33% 0 33%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

button[type='submit'] {
    float:right;
    margin-right: 33%;
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type='submit']:hover {
    background-color: #45a049;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h2 {
        margin-top: 20%;
    }

    input[type='password'], input[type='text'] {
        width: 70vw;  /* используем vw (viewport width) для адаптивности */
        padding: 10px;
    }

    p {
        margin: 0 10% 0 10%;
    }

    button[type='submit'] {
        margin-right: 10%;
        padding: 10px 16px;
    }
}


