@font-face {
    font-family: 'Inter400';
    src: url('./../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: 'Inter500';
    src: url('./../fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: 'Inter600';
    src: url('./../fonts/Inter-SemiBold.ttf');
}

:root{
    --fangstr-attention: #006374;
    --fangstr-attention-contrast: #ffffff;
    --fangstr-tertiary: #F6F7F9;
    --fangstr-border: #C8CFD6;
    --fangstr-border-radius: 5px;
    --fangstr-font-size-small: 12px;
    --fangstr-font-size: 16px;
    --fangstr-font: 'Inter400', 'Helvetica Neue', 'Roboto', Arial;
    --fangstr-font-500: 'Inter500', 'Helvetica Neue', 'Roboto', Arial;
    --fangstr-font-600: 'Inter600', 'Helvetica Neue', 'Roboto', Arial; 
}

* {
    box-sizing: border-box;
    font-family: var(--fangstr-font), serif;
}

html, body {
    height: 100%;
    margin: 0;
}

form {
    display: flex ;
    flex-direction: column; 
    gap: 1.5rem;
}

input {
    background-color: var(--fangstr-tertiary);
    border: 1px solid var(--fangstr-border);
    border-radius: var(--fangstr-border-radius);
    font-size: var(--fangstr-font-size);
    padding: 12px;
}

label {
    font-size: var(--fangstr-font-size-small);
}

button {
    color: var(--fangstr-attention-contrast);
    background-color: var(--fangstr-attention);
    border-radius: var(--fangstr-border-radius);
    font-size: var(--fangstr-font-size);
    margin-top: 2rem;
    padding: 12px 24px;
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.input-container {
    display: flex;
    flex-direction: column;
}

.split {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100%;
}

.left {
    background: url("./../images/bg.webp") center/cover no-repeat;
    flex: 1;
    z-index: 1;
}

.right {
    flex: 1;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding: 20px;
}

@media (max-width: 1024px) and (orientation: portrait), (max-width: 768px) {
    .split {
        flex-direction: column-reverse;
    }
    
    .right {
        flex: 2;
    }

    .TODO-left::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 101%;       
        height: 50%;
        background: white;
        border-radius: 50%;
        z-index: 2;
    }
}
