@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    transition: 0.3s ease-in-out;
}

.name-page {
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

.name-page > p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.main-content {
    width: 100%;
    height: 100vh;
    background: url('../../public/img/fondo_alcaldia_actual.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
}

.login-form-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    background-color: #111e53b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-content > div {
    width: 100%;
}

.logo-cuajimalpa {
    display: block;
    margin: 30px auto;
    width: 25%;
    height: 25%;
    padding: 0;
    border-radius: 15px;
}

.logo-cuajimalpa > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.name-system {
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 30px;
}

.name-system > h1 {
    font-weight: 500;
}

.form-content-login {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
}

.textbox-content {
    display: block;
    margin: 15px auto;
    width: 100%;
}

.concat-dominio-select {
    position: relative;
}

.dominio-email {
    position: absolute;
    top: 9.5px;
    right: 20px;
    background-color: #dcdcdc;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    width: 60%;
    outline: none;
    border: none;
}

.textbox-content > input, button {
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.textbox-content > input {
    background: #EFEFEF;
}

.textbox-content > button {
    background-color: #E5226D;
    font-weight: bold;
    color: #fff;
    font-size: 17px !important;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.textbox-content > button:hover {
    background-color: #bd1354;
}

.msgErrorAuth {
    color: #fff;
    padding: 10px;
    font-weight: bold;
    display: block;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
    text-align: center;
}