@charset "UTF-8";

@font-face {
    font-family: 'CaviarDreams';
    src: url('CaviarDreams_Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'RampartOne';
    src: url('RampartOne-Regular.ttf') format('truetype');
}

*{
    font-family: 'CaviarDreams' !important;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.top{
    text-align: center;
}

.top p{
    color: #1c9941;
    font-size: 1.1em;
    text-transform: uppercase;
}


.login{
    width: 360px;
    text-align: left;
    background-color: rgba(255, 255, 255);
    padding: 30px;
    border: 2px solid #144d2542;
    border-right: none;
    border-bottom: none;
    border-radius: 10px;
    box-shadow: 1px 25px 20px rgba(0, 0, 0, .2);
}

.login .logocdjs{
    text-align: left;
}

.login h1{
    color: #28a04c;
    font-size: 1.6em;
}

.input{
    background-color: #fff;
    margin: 5px 0;
    border-radius: 50px;
    width: 100%;
    border: 2px solid rgba(20, 77, 37, 0.226);
    border-right: none;
    border-bottom: none;
    outline: none;
    padding: 10px 14px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
	font-size: 14px;
}

.input:focus{
    box-shadow: none;
}

.botao{
    width: 80px;
    margin-top: 10px;
    color: #fff;
    background-color: #28a04c;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    border: none;
    border: 2px solid rgba(20, 77, 37, 0.226);
    border-right: none;
    border-bottom: none;
    outline: none !important;
    transition: all .15s ease;
}

.botao:hover{
    background-color: #fff;
    color: #28a04c;
}

.botao:active{
    border: none;
}

.login a{
    color: rgb(20, 77, 37) !important;
}

.login a:hover{
    color: #28a04c !important;
}