@import url("../../vendors/bootstrap-icons/bootstrap-icons.min.css");
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
body {
    font-family: "Segoe UI", Geneva, sans-serif;
    background: #000232;
}
a {
  text-decoration: none;
  color: #aaa;
  transition: all 0.3s ease; }
a:hover {
    text-decoration: none;
    color: #000232; }
:focus {outline: none; }

.login-card {
    max-width: 420px;
    width: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.login-header {
    /*background: rgba(0, 0, 0, 0.05);
    color: rgba(255, 255, 255, 0.8) !important;*/
    background: #fff;
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 20px;
    text-align: center;
}
.logo {
    /*width: 100px;*/
    margin: auto;
}

.logo img {
    width: 100%;
    /*height: 90px;*/
    object-fit: contain;
}

.form-control {
    height: 48px;
}

.btn-login {
    height: 48px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .login-card {
        margin: 15px;
    }
}