* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 600px;
    background-color: #3d5aac;
    font-family: Roboto, Arial, sans-serif;
}

input {
    background-color: #fff;
    border: 2px solid #3d5aac;
    border-radius: 20px;
    text-align: left;
    color: #3d5aac;
    height: 30px;
    margin: 5px;
    padding: 5px;
    width: 200px;
}

input::placeholder {
    color: #95afff;
    font-weight: bold;
}

span {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.inputframe{
    display:flex; 
    align-items:center;
}

.bgimage{
    background-image: url(./img/background.png);
    height: 100lvh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoimage{
    background-image: url(./img/LogoCTRLCode.svg);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    align-self: center;
}

.tela {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.btnSubmit {
    background-color: #3d5aac;
    border: none;
    border-radius: 20px;
    color: white;
    text-align: center;
    height: 40px;
    width: 210px;
    font-weight: bold;
    font-size: 20px;
    margin-left: 40px
}

.mainbg{
    display: block;
    background-color: #3d5aac;
}

.pagetitle {
    width: 100%;
    height: 50px;
    background-color: #FFF;
    display: flex;
    align-items: center;
}

.cabecalho-filler {
    width: 100px;
    height: 100%;
    background-color: #3d5aac;
    float: left;
    flex-direction: column;
    display: flex;
}

.cabecalho{
    color: #fff;    
    background-color: #3d5aac;    
    height: 30px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    text-align: center;
}

.cabecalho-detalhe {
    width: 100px;
    border-right: 30px solid transparent;
    border-top: 50px solid #3d5aac;
    background-color: #fff;    
}

.empresa-logo {
    width: 120px;
    padding: 5px;
    background-color: #fff;
}

.cabecalho-logo {
    width: 40px;
    padding: 5px;
    background-color: #fff;
}

.menu {
    width: 100px;
    height: calc(100lvh - 50px);
    background-color: #3d5aac;
    float: left;
    flex-direction: column;
    display: flex;
    color: #fff;
}

.menu-item {
    text-align: center;
    padding-top: 10px;   
    padding-bottom: 10px;
    cursor: pointer;
}

.menu-item img {
    width: 40px;
    height: 40px;
}

.menu-item p {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.menu-item:hover {
    background-color: #2c3e8f;
}

.menu-inner-filler {
    height: 100lvh;
}

.menu-filler{
    text-align: center;
    padding: 10px;
    height: 20px;
}

.menu-detalhe {
    border-right: 100px solid transparent;
    border-top: 30px solid #3d5aac;
    background-color: #fff;    
}

.menu-logo {
    width: 100%;
    height: 100px;
    padding: 10px;
    background-color: #FFF;
    align-items: center;
}

.content {
    width: calc(100% - 120px);
    height: calc(100lvh - 70px);
    background-color: #FFF;
    float: left;
    flex-direction: column;
    display: flex;
    border-top-left-radius: 20px;
    padding: 10px;
}

.content-frame {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.formcrud {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    align-content: flex-start;
    background-color: #fff;
}

.formcrud p {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    font-family: Roboto, Arial, sans-serif;
}

.formcrud br {
    display: block;
    width: 100%;
    content: "";
}

.formcrud .btnAlterar {
    width: 250px;
    background-color: #3d5aac;
    border: none;
    border-radius: 20px;
    color: white;
    text-align: center;
    height: 40px;
    font-weight: bold;
    font-size: 20px;
}
