@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
    --primary: #696cff;
    --white: #ffffff;
    --grey: #697a8d;
    --lightGrey: #f5f5f9;
    --darkerGrey: #e5e5e5;
    --darkGrey: #333333;
    --slate: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

}

body {
    background-color: #f1f1f1;
    font: 14px sans-serif;
}

.container-large {
    background: #f1f1f1;

}

.wrapper {
    display: flex;
    height: 100vh;

    border-radius: 12px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: var(--darkGrey);
}

#title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--darkGrey);
    text-align: center;
}

#form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding-right: 20px;

}

#button-container {
    max-width: 300px;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

#submit {
    display: block;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 75%;
}

.form-input {
    max-width: 300px;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    margin-bottom: 1rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form {
    width: 50%;

}

.btn-login {
    background-color: var(--primary);
    font-weight: 800;
}

.has-error {
    border: 1px solid red;
}

.has-error-text {

    background-color: #F8D7DA;
    color: #721C24;
    padding: 10px;
    border-radius: 4px;
}

.input-container {
    max-width: 300px;


}

#captcha-field {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;

}

.second {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 50%;
    background-color: #1E293B;
}

.svg {
    color: #334155;
    position: absolute;
    inset: 0;
    z-index: 0;
}

@media screen and (max-width: 808px) {


    .second {
        display: none;
    }

    .form {
        width: 100%;
    }

    #form {
        width: 100%;
        padding: 0;
    }

    .input-container {
        max-width: 100%;
    }

    #button-container {
        max-width: 100%;
    }

    #submit {
        width: 100%;
    }
}

.form-content {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}