* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #4a4a49;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.main-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

form img {
    max-width: 150px;
    margin-top: 20px;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 140%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #f0a42d;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #be801a;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    form {
        padding: 15px;
        max-width: 300px;
    }

    input {
        padding: 8px;
    }

    button {
        padding: 8px;
        font-size: 14px;
    }
}

/* Estilos para dispositivos muito pequenos */
@media (max-width: 480px) {
    form {
        padding: 10px;
        max-width: 100%;
    }

    input {
        padding: 6px;
    }

    button {
        padding: 6px;
        font-size: 12px;
    }
}