@font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    src: url("/static/fonts/OpenSans-Bold.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    src: url("/static/fonts/OpenSans-Medium.ttf") format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    src: url("/static/fonts/OpenSans-Regular.ttf") format('truetype');
}

@font-face {
    font-family: 'Bunker';
    font-weight: 400;
    src: url("/static/fonts/Bunker.ttf") format('truetype');
}

html * {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1rem !important;
    margin: 0;
    padding: 0;
}

body * {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: #F0F6FB;
    overflow-y: hidden;
    overflow-x: hidden;
    gap: 1rem;
}

.main-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-radius: 22px;
    box-shadow: 0 10px 46px 0 rgba(108, 143, 165, 0.07), 0 6px 30px 0 rgba(108, 143, 165, 0.07), 0 6px 12px 0 rgba(108, 143, 165, 0.07), 0 0 6px 0 rgba(108, 143, 165, 0.07);
    background-color: #FFFFFF;
    width: 640px;
    padding: 60px 40px 60px 40px;
}

form {
    background: transparent;
    min-width: 560px;
}

.form-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

input:not([type='hidden']):not([class='redirect-url']) {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #1f2937;
}

input::placeholder {
    color: #AFC1CE;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

label {
    font-size: 18px;
    font-weight: 500;
    color: #1D252A;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #F1F7FC;
    border-radius: 12px;
    padding: 0 16px;
    height: 52px;
}

.icon {
    color: #9ca3af;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.submit-button {
    display: flex;
    width: 338px;
    height: 54px;
    padding: 12px 38px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    background: #30A5F0;
    border: 1px solid #30A5F0;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    cursor: pointer;
}

.submit-button:hover {
    background: #30A5F0;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.auth-alert {
    font-size: 0.875rem !important;
    color: #BB3F5A;
    width: 100%;
}