﻿/* CSS for the modal */
.modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    padding: 10px 20px 20px 20px;
    border: 1px solid #888;
    width: 25%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 5px 10px;
    margin-bottom: 12px;
}

    .modal-header h2 {
        margin: 0;
    }

.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

 .close:hover,
 .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
 }

.form-group {
    margin-bottom: 8px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.label-form-cad-user {
    font-size: 12px !important;
}

.form-cad-user {
    width: calc(90% - 10px) !important;
    font-size: 12px !important;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #66afe9;
    outline: none;
}

.btnCadastrar {
    width: 100%;
    text-align: center;
}

.btnCadastrarUsuario {
    background-color: #5cb2a7;
    border: medium none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1.1em;
    padding: 0.75em 1.5em;
}

 .btnCadastrarUsuario:hover {
     background-color: #45a049;
}

button[type="button"].close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.erro_msg {
    color: red;
    margin: 5px 0;
}
