[v-cloak]{
    display: none;
}

body {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at center 30%, #00181a 70%, #091622 100%);
    font-family: 'Montserrat', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}
.login-container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 360px;
    margin-top: 150px;
    align-items: center;
    z-index: 2;
}
.input-field {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: none;
    outline: none;
    padding: 0 24px;
    font-size: 14px;
    font-family: inherit;
    background: #f5f5f5;
    color: #222;
    box-shadow: 0 2px 8px 0 #0001;
    transition: box-shadow .2s;
}
.input-field:focus {
    box-shadow: 0 4px 16px 0 #8dbbe0aa;
}
.sign-in-btn {
    width: 100%;
    height: 50px;
    border: 2px solid #ecd48e;
    border-radius: 25px;
    background: linear-gradient(90deg, #167546 0%, #2ba338 100%);
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-top: 18px;
    position: relative;
    overflow: hidden;
}
.sign-in-btn::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 96%; height: 65%;
    transform: translate(-50%,-50%);
    background: radial-gradient(ellipse at center, #fffcb955 0%, #fffcb900 70%);
    opacity: 0.7;
    pointer-events: none;
    filter: blur(3px);
}
.sign-in-btn:active {
    box-shadow: 0 0 8px #98edb5bb, 0 2px 12px #ecd48e33;
    border-color: #f8e7b7;
}
.sign-in-btn span {
    position: relative;
    z-index: 1;
    color: #efefbe;
    letter-spacing: 1px;
}
.sign-in-btn a {
    color: inherit;
    text-decoration: inherit;
}
.font-s14 {
    font-size: 14px;
}
.font-s13 {
    font-size: 13px;
}
.font-s12 {
    font-size: 12px;
}
.pump-redirect {
    color: green;
}
.pump-redirect:hover {
    color: green;
    opacity: 0.8;
    text-decoration: none;
}

/* checkbox  */
.checkbox-wp {
    width: 10% !important;
}

.checkbox-wp .checkmark-checkbox {
    display: block;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    border: 3px solid #FFFFFF;
}

.checkmark-checkbox {
    border: 3px solid #FFFFFF;
}

.checkbox-wp .checkmark-checkbox::before {
    content: '';
    background-color: transparent;
    border: 3px solid;
    width: 75%;
    height: 40%;
    border-color: transparent transparent #FFFFFF #FFFFFF;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    visibility: hidden;
}

.checkmark-checkbox::before {
    border-color: transparent transparent #FFF #FFF;
}

.checkbox-wp input[type="checkbox"]:checked+.checkmark-checkbox::before {
    visibility: visible;
}

.checkmark-checkbox {
    width: 30px;
    height: 30px;
}
/* end checkbox  */
