* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
}

html, body, #body-login{
    height: 100% !important;
}
body {
    background: #0F0F10;
    background: radial-gradient(circle, rgba(15, 15, 16, 1) 0%, rgba(35, 35, 38, 1) 50%, rgb(81 21 21) 100%);
    color: #fff;
}

.login-container {
    display: flex;
    padding: 4rem 9rem;
    height: 100%;
    width: 100%;
    justify-content: space-between;
   
}

.login-left {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 34%;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    color: #a9a9a9;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-form label {
    font-size: 14px;
    color: #ccc;
}

.login-form #username,
.login-form #password {
    padding: 12px;
    border: 1px solid #414141;
    background-color: #2c2c2d;
    border-radius: 6px;
    color: #fff;
}

.login-form input:focus {
    outline: none;
    border-color: #e34850
}


button {
    background-color: #e34850;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease-in-out;
    margin-top: 2rem;
}

button:hover {
    background-color: #ef4a53;
}
button:focus, button:active {
    background-color: #cf4047;
}
.login-right {
    background-color: #e34850;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56%;
    border-radius: 20px;
    box-shadow: inset 0 0 20px 10px #ddbaba1a;
}

.login-right img {
    width: 96%;
    border-radius: 12px;
    object-fit: cover;
    height: 96%;
    box-shadow: 0 0 15px 6px #0000004d;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    color: #ccc;
    font-size: 14px;
    gap: 8px;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .checkmark {
    height: 16px;
    width: 16px;
    border: 1.5px solid #888;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
    background-color: #e34850;
    border-color: #e34850;
}
.custom-checkbox a {
    color: #ccc
}


.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked + .checkmark::after {
    display: block;
}
.logotipo {
    position: absolute;
    top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    letter-spacing: 2px;
}

.logotipo img {
    width: 4rem;
    margin-right: 0.5rem;
}
.logotipo h1 {
    font-size: 2rem;
}
.logotipo h1 span {
    color: #e34850;
}


.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px; 
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  user-select: none;
}

.eyeOff {
        margin-top: -3px;
    display: none;
}
@media(max-width: 1440px) {
    .login-container {
        padding: 4rem 3rem;
    }
}

@media(max-width: 1336px) {
    .login-left {
        width: 42%;
    }
    .login-right {
        width: 54%;
    }
    .logo {
        font-size: 1.9rem;
    }
}

@media(max-width: 1024px) {
    .login-left {
        width: 54%;
    }
    .login-right {
        width: 45%;
    }
    .logo {
        font-size: 1.7rem;
    }
    .subtitle{
        font-size: 1rem;
    }
}

@media(max-width: 802px) {
    .login-container {
        height: 100%;
    }
    .login-left{
        width: 100%;
    }
    .login-right {
        display: none;
    }
}

@media(max-width: 560px) {
    .login-container{
        align-items: flex-start;
    }
    .login-left{
        padding: 0px
    }
    .logo {
        font-size: 1.5rem;
    }
    .logotipo {
        position: relative;
        top: unset;
        justify-content: flex-start;
        margin-bottom: 3rem;
    }
}


@media (max-width: 425px) {
    .logotipo img {
        width: 3rem;
    } 
    .logotipo h1 {
        font-size: 1.5rem;
    }
    .logo {
        font-size: 1.4rem;
    }
}


@media (max-width: 375px) {
    .login-container {
        padding: 4rem 2rem;
    }
    .logo {
        font-size: 1.3rem;
    }
}


@media (max-width: 320px) {
    
    .subtitle{
        font-size: 0.9rem;
    }
    .logo {
        font-size: 1.1rem;
    }
}
