@font-face {
    font-family: Lufga;
    src: url("../fonts/Lufga-Regular.otf");
}

html, body {
    display: flex;
    justify-content: center;
    height: 100%;
    color: #FFF;
}

.title {
    font-size:3em;
}

h2 {
    margin:10px;
    color: #FFF;
}

p {
    color: #FFF;
    font-size:1.2em;
}


body, div, h1, form, input { 
    padding: 0;
    margin: 0;
    outline: none;
    font-family: Lufga, sans-serif;
    font-size: 16px;
    color: #666;
}

form {
    width: 100%;
    height: 50%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.flex-space {
    justify-content: space-evenly!important;
}

.flex-between {
    justify-content: space-between!important;
}

.content { 
    background-image: url("../assets/background-prestes.png");
    width: 100vw;
    height: 100vh;
}

.prestes-card-user {
    border: 10px solid #84e115;
    background-color: #323232;
    border-radius: 0px;
    box-shadow: none !important;
    position: relative;
    z-index: 10;
    width: 400px;
    height: 350px;
}

.prestes-card-user::after {
    content: "";
    background-color: #323232;
    width:50px;
    height:50px;
    position: absolute;
    top: 99.99999%;
    left: -10px;
    border: 10px solid #84e115;
    border-top: none;
    border-bottom-right-radius: 100%;
}

.input {
    width: 75%;
    height: 45px;
    background-color: rgba(34, 34, 34, 0.432);
    border: none;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-align: center;
}

.button {
    width: 40%;
    height: 35px;
}

.button button {
    width: 100%;
    height: 100%;
    background-color: #84e115;
    font-size: 16px;
    border: none;
    color: #ffff;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
}

.logo {
    width: 100%;
    height: 40%;
}

.logo-pic {
    width: 60%;
}

i {
    margin-left: -30px;
    cursor: pointer;
}

.box-input {
    width: 75%;
}

.box-input .input {
    width: 100%;
    height: 45px;
    border: none;
}

.alert-warning {
    background-color: goldenrod;
    padding: 10px;
    width: 70%;
    border: 1px solid black;
    border-radius: 3px;
    color: #fff;
}

@media (min-width: 992px) {
    .content {
        background-size: 50%;
        background-repeat: repeat;
    }
}

@media (max-width: 600px) {
    .prestes-card-user {
        width: 90% !important;
        height: 40% !important;
    }
}

.doc-btn {
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    font-family: Lufga;
    color: #ffffff;
    font-size: 1.2em;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    
  }
  .doc-btn:hover {
    background: #201c1c;
    background-image: -webkit-linear-gradient(top, #201c1c, #201c1c);
    background-image: -moz-linear-gradient(top, #201c1c, #201c1c);
    background-image: -ms-linear-gradient(top, #201c1c, #201c1c);
    background-image: -o-linear-gradient(top, #201c1c, #201c1c);
    background-image: linear-gradient(to bottom, #201c1c, #201c1c);
    text-decoration: underline;
  }