﻿@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --blue: #272C71;
    --gray: #626062;
}

.font-redhat {
    font-family: "Red Hat Display", serif;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    margin-top: 0;
    background-color: #F7F7F7 !important;
}

.font-fail {
    font-size: 10px;
    color: red;
}

/*LOGIN*/

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 80px;
}

.img-bg {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
}

.login-box {
    background-color: white;
    padding: 60px 80px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .login-box img {
        height: 150px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

.font-titleLog {
    font-weight: 700;
    font-size: 24px;
    color: black;
    text-align: center;
}

.font-leyend {
    font-size: 12px;
    color: var(--blue);
    text-align: center;
}

/*LOGIN*/

.textbox-group {
    display: flex;
    flex-direction: column;
}

.label-textbox {
    font-weight: 600;
    font-size: 13px;
    color: var(--gray);
}

.textbox {
    border: 1px solid var(--gray);
    border-radius: 10px;
    color: #000000;
    font-size: 14px;
    cursor: text;
    padding: 10px;
    width: 100%;
}


.btn-blue {
    padding: 10px 20px;
    background-color: var(--blue);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: auto;
    display: block;
    margin: 0 auto;
}

.custom-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

    .custom-checkbox input[type="checkbox"] {
        border: 1px solid #5F5F60;
        border-radius: 3px;
        background-color: white;
    }

        .custom-checkbox input[type="checkbox"]:checked {
            background-color: #007AFF;
            border-color: #007AFF;
        }

.login2-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 80px;
    
}

.img2-bg {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
}

.login2-box {
    background-color: white;
    padding: 60px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

    .login2-box img {
        height: 150px;
        width: auto;
        display: block;
        margin: 0 auto;
        padding-top:120px;
    }

.font2-titleLog {
    font-weight: 700;
    font-size: 24px;
    color: black;
    text-align: center;
}

.font2-leyend {
    font-size: 12px;
    color: var(--blue);
    text-align: center;
}
