* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Georama", sans-serif !important; */
}

body {
    background: url('../img/adminBg.jpg') #ecf0f3 no-repeat ;
    background-size: cover;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: "Georama", sans-serif !important; */
}

.bgVideo video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.wrapper {
    max-width: 400px;
    width: 320px;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 15px;
    z-index: 9;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border: 4px solid #E31837;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
}

.logo img {
    width: 180px;
    height: 80%;
    max-width: 180px;
    object-fit: cover;
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    color: #555;
    margin: 0
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 14px;
    color: #666;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
}

.wrapper .form-field {
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}

.wrapper .form-field .fas {
    color: #555;
}

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    color: #fff;
    border-radius: 25px;
    letter-spacing: 1.3px;
    transition: all 0.2s linear;
}

.bg-gradient-success {
    background-color: #05A65B !important;
  justify-content: center;
  color: #fff;
}

.bg-gradient-success:hover {
    background-color: #05A65B !important;
  justify-content: center;
  color: #fff !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px transparent;
    font-size: 14px;
}

input::placeholder {
    font-size: 14px
}

.wrapper a {
    font-size: 0.8rem;
    color: #03A9F4;
}

.wrapper a:hover {
    color: #039BE5;
}
.text-underline {
    text-decoration: underline;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}

