@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');


:root {
    --color-principal: #367688;
    --color-secundario: #E2F9FF;
}

* {
    font-family: "Lexend", sans-serif;
}

body,
html {
    background-color: #FFFFFF;
    height: 100%;
    margin: 0;
    padding: 0;
}

.main-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
}


.left-panel {
    background-image: url(../img/background.jpg);
    background-size: cover;
    width: 70%;
}



.right-panel {
    align-items: center;
    background-color: white;
    border-left: 30px solid var(--color-principal);
    display: flex;
    height: 150vh;
    justify-content: center;
    position: relative;
    transform: rotate(13deg) translate(-200px);
}

.login-box {
    padding: 20px;
    text-align: center;
    transform: rotate(-13deg) translateX(130px) translateY(-150px);
    width: 500px;
}

.login-box form {
    margin: 0 auto;
    width: 80%;
}

.login-box h2 {
    color: var(--color-principal);
    font-size: 40px;
    line-height: 43px;
    font-weight: 700;
    margin-bottom: 10px;
}

.logo {
    max-width: 382px;
    width: 100%;
    margin-bottom: 10px;
}

.login-box h3 {
    color: var(--color-principal);
    font-size: 40px;
    margin-bottom: 25px;
    line-height: 47px;
}

.input-group {
    display: flex;
    align-items: center;
    background: var(--color-secundario);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.input-group i {
    margin-right: 10px;
    color: #333;
}

.input-group input {
    background: transparent;
    border: none;
    flex: 1;
    font-size: 15px;
    outline: none;
}

.forgot {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.login-btn {
    background: var(--color-principal);
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 12px 20px;
    transition: background 0.3s;
    width: 100%;
}

.login-btn:hover {
    background: #5d9400;
}