@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*,
body {
    margin: 0;
    padding: 0;
}
html,body {
    font-family: "Montserrat", sans-serif;
    background: #000;
}

img {
    max-width: 100%;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

/*.login-form h2 {*/
/*    text-transform: uppercase;*/
/*}*/

/*.registration-form h2 {*/
/*    font-size: 26px;*/
/*}*/

ul {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none
}

.container {
    max-width: 540px;
    margin-inline: auto;
    display: block;
    overflow-x: hidden;
}
.bg-wrapper {
    background-image: url("./images/splash-screen-without-buttons.png") !important;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 1.5rem;
    background-position: top center;
  }
  .logo-wrapper{
    text-align: center;
  }
  .uppercase{
    text-transform: uppercase;
  }
  .btn-primary {
    background: radial-gradient(circle,
            rgba(211, 25, 39, 1) 0%,
            rgba(150, 9, 20, 1) 100%);
}
  

.btn-secondary {
    background: radial-gradient(circle,
            #283aa7 0%,
            #122077 100%);
}


button{
    border: 0;
}
.text-center{
    text-align: center;
}
.mb-26{
    margin-bottom: 26px;
}
@media (max-width: 575px) {
    .container {
        /*height: 100vh;*/
        min-height: 100vh;
    }
    .bg-wrapper {
        background-size: contain !important;
    }
}