* {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 2.2vmax;
    border-radius: 8px;
}

body {
    width: 100vw;
    height: 100vh;
    background: url('../image/pexels-cottonbro-9665176.jpg');    
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    width: 100vw;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 80vmin;
    margin: auto;
}

header {
    width: 100%;
    height: fit-content;
    background: rgb(255, 24, 24);
    text-align: center;
    font-weight: bolder;
    color: #ffffff;
}

input[type="text"],
input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="reset"],
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
}

input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #45a049;
}

#error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    header {
        font-size: 20px;
    }

    form {
        padding: 15px;
    }

    input[type="reset"],
    input[type="submit"] {
        width: 100%;
    }
}