@media only screen and (max-width: 2000px) {
    html {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html,
    body {
        height: 100%;
    }

    body {
        background-color: #f2f2f2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        width: 100%;
        height: 100%;
        background-color: #fff;
        border: 1px solid #ddd;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    h2 {
        margin-bottom: 10px;
    }

    form {
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 50px 60px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
    }

    label {
        margin-bottom: 5px;
    }

    input[type="text"],
    input[type="password"] {
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    input[type="submit"] {
        background-color: #D12501;
        color: #fff;
        padding: 10px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    input[type="submit"]:hover {
        background-color: #d84f34;
    }

    p {
        color: red;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 600px) {
    html {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html,
    body {
        height: 100%;
    }

    body {
        background-color: #f2f2f2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        width: 100%;
        height: 100%;
        background-color: #fff;
        border: 1px solid #ddd;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    form {
        width: 60%;
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 70px 60px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
    }

    label {
        margin-bottom: 5px;
        /*font-size:35px;*/
    }

    input[type="text"],
    input[type="password"] {
        margin-bottom: 10px;
        /*padding: 30px;*/
        border: 1px solid #ccc;
        border-radius: 4px;
        /*height: 60px;*/
        /*font-size: 30px;*/
        border-radius: 10px;
    }

    input[type="submit"] {
        background-color: #D12501;
        color: #fff;
        /*padding: 10px;*/
        border: none;
        border-radius: 4px;
        cursor: pointer;
        /*height: 100px;*/
        /*font-size: 30px;*/
        border-radius: 15px;
        margin-top: 30px;
    }

    input[type="submit"]:hover {
        background-color: #d84f34;
    }

    p {
        color: red;
        margin-top: 10px;
    }
}