/* Logout CSS */

body {
    background-color: white;
}

.containerLogout {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.logoutInterno {
    width: 40%;
    height: 300px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid orange;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
}

.logoutInterno a {
    text-decoration: none !important;
    color: orange;
    cursor: pointer;
}

@media screen and (max-width: 411px) {
    .logoutInterno {
        width: 90%;
        height: 200px;
        padding: 15px;
        font-size: 14px;
    }

    .logoutInterno a {
        font-size: 16px;
    }
}


/* Login CSS */

.divMensagem {
    width: 100%;
    display: flex;
    justify-content: center;
}

.messagesClassSuccess {
    padding: 10px;
    font-weight: bold;
    width: 80%;
    border: 1px solid rgb(0, 78, 13);
    background-color: rgb(23, 170, 23);
    color: white;
    border-radius: 10px;
    display: none;
}

.messagesClassSuccess:has(ul) {
    display: block;
}

.messagesClassError {
    padding: 10px;
    font-weight: bold;
    width: 80%;
    border: 1px solid rgb(110, 0, 0);
    background-color: rgb(224, 52, 0);
    color: white;
    border-radius: 10px;
    display: none;
}

.messagesClassError:has(ul) {
    display: block;
}

.divFormCadastrar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.divInternaCadastrar {
    width: 40%;
    height: auto;
    padding: 0px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
    padding: 10px;
}

.divInternaCadastrar form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divInternaCadastrar input{
    border: 1px solid lightgray;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    padding-left: 10px;
}

.divInternaCadastrar input:focus{
    border: 2px solid orange;
    outline: none;
}
.btnCadastrarEditar {
    width: 40%;
    height: 40px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    background-color: #ff9800;
    color: white;
    font-weight: bold;
    border: 1px solid orange;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.divInternaCadastrar h2 {
    margin-bottom: 20px;
}

.divInternaCadastrar button:hover {
    color: #e68a00;
    background-color: white;
}

.installAppClass {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btnApp {
    width: 20%;
    height: 30px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    background-color: #ff9800;
    color: white;
    font-weight: bold;
    border: 1px solid orange;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-items: center;
    display: flex;
    justify-content: center;
}

.btnApp:hover {
    background-color: white;
    color: orange;
}

.installPopup {
    border-radius: 8px;
    z-index: 1000;
    max-width: 90%;
}

.installPopup img {
    display: block;
    margin: 0 auto;
}

.installPopup button {
    margin: 10px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.installPopup button:hover {
    background: #0056b3;
}

.closePopup {
    background: #ccc;
    color: black;
}

.closePopup:hover {
    background: #aaa;
}

/* mobile login */

@media screen and (max-width: 411px) {
    .divInternaCadastrar {
        width: 90%;
        padding: 5px;
    }

    .divInternaCadastrar input {
        width: 90%;
        height: 35px;
    }

    .btnCadastrarEditar {
        width: 80%;
        height: 35px;
        font-size: 14px;
    }

    .btnApp {
        width: 80%;
        height: 30px;
        font-size: 14px;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .messagesClassSuccess, 
    .messagesClassError {
        width: 90%;
        font-size: 14px;
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    .divInternaCadastrar {
        width: 100%;
        padding: 5px;
    }

    .divInternaCadastrar input {
        width: 90%;
        height: 35px;
    }

    .btnCadastrarEditar {
        width: 80%;
        height: 35px;
        font-size: 14px;
    }

    .btnApp {
        width: 80%;
        height: 30px;
        font-size: 14px;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .messagesClassSuccess, 
    .messagesClassError {
        width: 90%;
        font-size: 14px;
        padding: 8px;
    }
}
