@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

input {
    height: 48px;
    border-radius: 5px !important;
    border-color: #272828;
    color: #272828 !important;
}
    input::placeholder {
        font-family: 'Poppins', sans-serif!important;
        font-size:13px;
    }

.icon-password {
    width: 24px;
    color: #323338;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1B274B;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 720px;
    height: 200px;
    pointer-events: none;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.login-container {
    max-width: 720px;
    width: 100%;
    background: white;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.title-login {
    display: flex;
    font-family: 'Poppins', sans-serif;
    justify-content: center;
    font-weight: 600;
    color: #323338;
}

.left-panel {
    background: #ffffff;
    position: relative;
    width: 348px;
    padding: 1.5rem;
    color: white;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 576px) {
    .left-panel {
        display: flex;
    }
}

.left-panel img.bg-image {
    position: absolute;
    inset: 0;
    width: 333px;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

.left-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .left-content img.logo {
        margin-bottom: 0.5rem;
        width: 64px;
        
    }

    .left-content h1 {
        font-weight: 700;
        font-size: 2.20rem;
        line-height: 2.25rem;
        margin-bottom: 0.25rem;
        font-family: 'Poppins', sans-serif;
    }

    .left-content p {
        font-weight: 300;
        font-size: 1.70rem;
        margin-top: 10px;

    }

.right-panel {
    flex: 1;
    max-width: 400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom:30px;
}

.form-label {
    color: #8a8c91;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.form-control:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 0.25rem rgb(59 130 246 / 0.5);
}

.password-wrapper {
    position: relative;
    width: 100%;
}
.border-bot {
    border:1px solid white;
    opacity:0.41;
    display:flex;
    max-width:200px;
    justify-items:center;
}
    .password-wrapper .toggle-password {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        border: none;
        background: transparent;
        color: #6B7280;
        cursor: pointer;
        padding: 0;
        font-size: 1.1rem;
    }

.forgot-link {
    font-size: 0.70rem;
    color: #adadad;
    text-decoration: underline;
    margin-top: 0.25rem;
    display: inline-block;
}
    .forgot-link:hover {
        color: #adadad;
    }
.centrado {
    display:flex;
    justify-items:center
}

.btn-login {
    background-color: #5B7FC9;
    border: none;
    color: #eaeef6 !important;
    padding: 0.5rem 1.6rem;
    border-radius: 0.60rem;
    width: max-content;
    height: 40px;
    margin: auto;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
}
    .btn-login:hover {
        background-color: #7c9bd9!important;
    }

footer {
    max-width: 720px;
    width: 100%;
    margin-top: 3rem;
    color: #9CA3AF;
    font-size: 0.75rem;
    user-select: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    footer hr {
        border-color: white;
        margin-top: 0.5rem;
        width: 200px; 
        border-width: 1px; 
        opacity: 0.5;
    }
