@media screen and (min-width: 601px) {

body {
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.login-container {
    width: 350px;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 12px;
    margin: 100px auto;
    box-shadow: 0 8px 1 6px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 30px;
}

.login-form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-size: 16px;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #333333;
    color: #00BCD4;
    border: 1px solid #444444;
    border-radius: 8px;
    font-size: 14px;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #bbbbbb;
    font-size: 12px;
    text-decoration: none;
}

.forgot-password a:hover {
    color: #00BCD4;
}

button {
    width: 100%;
    background-color: #00BCD4;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #008ba3;
}

}

/* Responsividade para celulares */
/* Estilo para celular */
@media screen and (max-width: 600px) {
    body {
        background: #000000; /* fundo preto sólido */
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }

    .login-container {
        background-color: rgba(0, 0, 0, 0.85);
        padding: 25px 20px;
        border-radius: 10px;
        width: 90%;
        max-width: 320px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
        text-align: center;
    }

    .logo {
        width: 100px;
        margin-bottom: 25px;
    }

    .login-form label {
        text-align: left;
        display: block;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .login-form input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        background-color: #333;
        color: #00BCD4;
        border: 1px solid #444;
        border-radius: 8px;
        font-size: 14px;
    }

    .forgot-password {
        text-align: right;
        margin-bottom: 20px;
    }

    .forgot-password a {
        color: #cccccc;
        font-size: 12px;
        text-decoration: none;
    }

    .forgot-password a:hover {
        color: #00BCD4;
    }

    button {
        width: 100%;
        background-color: #007d96;
        color: #ffffff;
        padding: 12px;
        border: none;
        border-radius: 30px;
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    button:hover {
        background-color: #009bb7;
    }
}
