body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;

    background:
        url("https://pizzahut.com.br/assets/images/home/background-header.png") no-repeat center top,
        rgb(235, 71, 42);
    background-size: 100% 50%, 100% 100%;
    background-repeat: no-repeat;
}

.container {
    border-radius: 25px;
    background-color: blanchedalmond;
    padding: 40px 30px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

input[type="text"], 
input[type="password"], 
input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 18px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.5);
}

button {
    background-color: blanchedalmond;
    font-size: 22px;
    border-radius: 25px;
    padding: 10px 25px;
    margin-top: 15px;
    border: 2px solid #e74c3c;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #e74c3c;
    color: white;
    transform: translateY(-3px);
}

.loja {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cadastro {
    font-size: 24px;
    margin-bottom: 15px;
    color: #444;
}

@media (max-width: 600px) {
    .container {
        max-width: 90%;
        padding: 25px 20px;
    }

    .loja {
        font-size: 32px;
    }

    .cadastro {
        font-size: 20px;
    }

    input[type="text"], 
    input[type="password"], 
    input[type="email"] {
        font-size: 16px;
        padding: 10px 12px;
    }

    button {
        font-size: 18px;
        padding: 8px 18px;
    }
}
