@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* #2E4259 */

#NomeRobo {
    text-transform: uppercase;
}

.span_error {
    color: red;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* border: 1px dashed red; */
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #141C25;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #000;
}



main {
    display: flex;
    /* align-items: center; */
    min-height: 100vh;
    /* background: #fff; */
    /* justify-content: space-around; */
}

/* HEADER */

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    background: #141C25;
    color: #fff;
}

.header .logo {
    width: 100%;
}

.header .logo img {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.header ul {
    list-style: none;
    width: 100%;
    
}

.header ul li {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.header ul li:hover {
    background-color: #2E4259;
    transition: 0.2s;
}

.header ul li i {
    padding: 0 10px;
    font-size: 20px;
}

.header ul li a {
    width: 100%;
    height: 100%;
    padding: 15px;
    font-style: none;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .logout {
    display: flex;
    margin-top: auto;
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.2s;
    align-items: center;
    gap: 5px;
    list-style: none;
    text-decoration: none;
    color: #fff;
}

.header .logout:hover {
    background-color: #2E4259;
    transition: 0.2s;
}

.logout a {
    text-decoration: none;
    color: #fff;
}

/* FIN DO HEADER */

/* HOME */

.home {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home h1 {
    /* padding: 40px 0 20px 0; */
    /* padding: 13px 0 1px 0; */
    padding: 30px 0;
    font-weight: 700;
    font-size: 30px;
    color: #000;
    /* width: 90%; */
    /* margin: 0 auto; */
}

.home .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

/* FIN DO HOME */

/* FORM */

.forms {
    display: flex;
    flex-direction: column;
    /* height: 400px; */
    /* align-items: center; */
    justify-content: center;
    width: 90%;
    margin: 40px auto;
}

.forms h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 34px;
    text-align: center;
}

.forms input {
    width: 300px;
    margin: 0 10px;
    padding: 15px;
    font-size: 15px;
    cursor: pointer;
    border-top: transparent;
    border-left: transparent;
    border-right: transparent;
    outline: none;
}

.forms input:hover,
.input:hover i {
    scale: 1.02;
    transition: .2s;
}

.forms input:focus {
    /* outline-color: #F3C64E; */
    /* outline: none; */
    border-bottom: 2px solid #F3C64E;
    transition: .5s;
}

.forms button {
    font-size: 20px;
    text-decoration: none;
    font-style: none;
    color: #fff;
    background-color: #2E4259;
    padding: 8px;
    border-radius: 5px;
    transition: .5s;
    margin: 20px 0;
    border: transparent;
    width: 100%;
    align-self: center;
}

.buttons_login button:disabled {
    cursor: not-allowed;
    background-color: #808080; 
    color: #a0a0a0; 
}

.buttons_login button:not(:disabled):hover {
    background-color: #F3C64E;
    transition: .5s;
    color: #2E4259;
    cursor: pointer;
}

/* .forms button:hover {
    background-color: #F3C64E;
    transition: .5s;
    color: #2E4259;
    cursor: pointer;
} */

.container_border {
    border-radius: 20px;
    padding: 10px 30px 30px 30px;
    box-shadow: 0px 5px 30px 0px gray;
    width: 95%;
    margin: 15px auto;
}

.form {
    /* margin: 0 auto; */
    display: flex;
    /* flex-direction: column; */
}

.form-control .material-symbols-outlined{
    color: #767676;
    position: relative;
    right: 20px; 
    top: 40%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.form-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control > input {
    margin: 0;
}

.buttons_login {
    position: relative;
    display: flex;
    justify-content: center;
    /* width: 20px; */
    gap: 10px;
}

/* FIM FORM */

/* RESULT */

.result {
    width: 90%;
    margin: 0 auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.result div {
    margin: 20px 0;
} 

/* FIM RESULT */

/* ANIMATION */

.loading {
    display: none;
    margin-bottom: 30px;
    width: 90%;
    margin: 0 auto;
}

.loading span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #F3C64E;
    margin: 8px;
}

.loading span {
    animation: none;
    animation: bounce .6s cubic-bezier(0.6,0.1,1,0.4);
    animation-iteration-count: infinite;
    animation-direction: alternate; 
}

.loading span:nth-child(1) {
    animation-delay: .1s;
}

.loading span:nth-child(2) {
    animation-delay: .2s;
}

.loading span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes bounce {
    to {
        transform: translateY(25px);
    }
}

/* FIM ANIMATION */

/* ALERT */

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    color: #FFF;
    z-index: 1000; 
    animation: slideIn 0.5s ease-out;
}

.success {
    background-color: #4BB543;
}

.error {
    background-color: #FF3333;
}

.info {
    background-color: #0099ff;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FIM ALERT */