@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

html,body {
    height: 100%;
}

body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

.form-card {
    width: 100%;
    max-width: 370px;
    padding: 25px;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    height: auto;
    background: white;
    border-radius: 10px;
}

.form-card .checkbox {
    font-weight: 400;
}

.form-card .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}

.form-card .form-control:focus {
    z-index: 2;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-submit {
    border: none;
    outline: none;
    height: 50px;
    width: 100%;
    background-color: black;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
}

.btn-submit:hover {
    background-color: white;
    border: 1px solid black;
    color: black;
}   

.svg {
    width: 30%;
    max-width: 30%;
    height: auto;
    margin-left: 35%;
}

#snackbar {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    visibility: hidden;
    width: 30%;
    min-width: 250px;
    background-color: #1ea848bd;;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 35%;
    top: 30px;
    font-size: 17px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  #snackbar.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}
  
@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

/* Validador senha */
.validator {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    text-align: left;
}
  
.validator p {
    opacity: 0.6;
    transition: all 0.3s ease-out;
    margin-bottom: 0.3rem;
}
  
.validator p span {
    font-size: 15px;
    margin-left: 10px;
    font-weight: 500;
}
  
.validator p i {
    position: absolute;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 26px;
    font-size: 15px;
    border-radius: 50%;
}
  
.fa-check {
    opacity: 0;
}
  
.fa-times {
    opacity: 1;
}
/* Validador senha */