* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #EEF2F4;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.content .div1 {
    width: 350px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F3F6FA;
}

.content .div1 h1 {
    font-family: 'Poppins-Bold', sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
}

.content .div1 p {
    font-family: 'Poppins-SemiBold', sans-serif;
    font-size: 16px;
    color: gray;
    font-weight: 600;
}

.content .div1 img {
    width: 250px;
    height: auto;
    object-fit: fill;
    margin-bottom: 80px;
}

.div2 .texto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content .div2 {
    width: 490px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
}

.content .div2 h1 {
    font-family: 'Poppins-Bold', sans-serif;
    font-weight: bold;
}

.content .div2 h3 {
    font-family: 'Poppins-SemiBold', sans-serif;
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.content .div2 .img_admin {
    width: 80px;
    height: auto;
    object-fit: fill;
}

.form_login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
}

.input_group {
    position: relative;
    width: 100%;
}

.input_group .icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #9e9e9e;
}

.input_group img {
    width: 24px;
    height: 24px;
}

.input_group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 6px;
    background-color: #f5f7fa;
    font-size: 15px;
    outline: none;
    color: #333;
}

.btn_login {
    background-color: #F8B133;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn_login:hover {
    background-color: #c78d29;
}