
@charset "utf-8";
/* CSS Document */
/* for ofergates v3 ui - login page */
/* ver: 2025-03-17 */

:root {
    --primary_blue: #1976D2;
    --primary_dark_blue: #155492;
    --primary_slate_gray: #8595A6;
    --primary_charcoal_gray: #5C6773;
    --primary_light_gray: #FAFBFC;
    --primary_gray: #616161;
    --primary_dark_gray: #424242;
    --primary_green: #2D9643;
    --primary_green_medium: #7ABA91;
    --primary_purple: #806ECC;
    --primary_purple_bg: #E8E1FE;
    --primary_green_bg: #D6F5DE;
    --disabled_gray: #515B5E;
    --disabled_gray_bg: #E5E7EB;
    --border_light_gray: 1px solid #E8E8E8;
    --default_border_color: #E8E8E8;
    --box_shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Regular.ttf");
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100dvh;
    background-image: url("./../images/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Heebo, serif;
}

/* .error {

} */

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

main {
    background-color: var(--primary_light_gray);
    width: calc(100% - 40px);
    max-width: 1200px;
    height: calc(100dvh - 40px);
    max-height: 600px;
    overflow-y: auto;
    display: flex;
    box-shadow: var(--box_shadow);
}

.main_right_side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.octagon {
    aspect-ratio: 1;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    position: absolute;
}

.octagon:nth-child(1) {
    background: #cf151929;
    width: 60px;
    top: 17%;
    right: -2%;
}

.octagon:nth-child(2) {
    background: #cf15190d;
    width: 40px;
    bottom: 10%;
    left: 7%;
}

.octagon:nth-child(3) {
    background: #cf151914;
    width: 80px;
    top: -6%;
    left: 5%;
}

.main_left_side {
    flex: 1 1 auto;
    height: 100%;
    background-image: url("./../images/login_bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.link {
    color: var(--primary_blue);
}

.small_text {
    font-size: .8em;
}

.logo {
    width: 100px;
    height: 100px;
}

.main_side_center {
    width: 280px;
}

.title {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1em;
}

.send_again {
    text-align: center;
    line-height: normal;
    margin-top: 20px;
}

.hidden{
    display: none;
}
.disabled {
    opacity: .4;
    user-select: none;
    pointer-events: none;
}

/* For Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

input {
    font-family: Heebo, serif;
    border-radius: 4px;
    border: var(--border_light_gray);
    background-color: white;
    width: 100%;
    padding: 8px 16px;
    color: var(--primary_charcoal_gray);
    text-align: right;
    direction: ltr;
    margin: 8px 0;
}

label {
    font-size: .8em;
    color: var(--primary_slate_gray);
    display: block;
    margin: 16px 16px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button {
    color: white;
    background-color: var(--primary_blue);
    text-decoration: none;
    border-radius: 4px;
    padding: 8px 16px 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border: none;
    border-bottom: 3px solid var(--primary_dark_blue);
    transition: .3s;
    margin: 20px auto;
}

button:hover {
    background-color: var(--primary_dark_blue);
}

.apps p{
    margin-top:20px;
    padding:5px 0;
}
.apps div{
    max-width: 160px;
    margin: 10px auto;
    width: 90%;
}
.apps img{
    width:100%;
    height:auto;
}

@media (min-width: 480px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {
    .main_right_side {
        width: 400px;
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {


}
