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

.right-container-box{
    text-align: center;
}

.error-message {
    display: none;
    color: #e74c3c;
    text-align: center;
    margin-top: 1rem;
}

.login-logo {   
    filter: brightness(0) invert(1); /* Make the logo white*/
    max-width: 15rem;
    margin-bottom: 3rem;
}
  
html,
body {
    height: 100%;
}
  
body {
    font-family: "Rubik", sans-serif;
    display: flex;
    background: linear-gradient(to bottom, #0D0D0D, #1A1A1A, #333333, #262624);
    color: #fff;
}
  
/* Média lekérdezés */
@media (max-width: 860px) {
    body {
        flex-direction: column;
    }

    .right-container,
    .left-container {
        flex: 1 0 auto;
    }
}

.right-container,
.left-container {
    flex: 1;
    flex-shrink: 0;
}
  
.left-container {
    background-image: url('Hero-home.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
  
.right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    overflow: auto;
}
  
.right-container__h2 {
    font-size: 30px;
}
  
.right-container__p {
    opacity: 0.5;
    margin: 5px 0 10px;
}
  
.right-container__input {
    width: 350px;
    padding: 15px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    transition: border 0.3s ease-in-out; /* Adj hozzá egy sima átmenetet */

    /* Fókuszálás hatás */
    &:focus {
        outline: none;
        border-color: #30a2ff; /* Ha fókuszálva van, a border színe kék lesz */
    }
}
  
.right-container__label {
    margin-top: 20px;
    font-size: 14px;
}
  
.right-container__bottom-text {
    text-align: center;
    margin-top: 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.right-container__bottom-text > strong {
    color: #fff;
}
  
.input-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
  
.toggle-container {
    margin: 24px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
  
.toggle-box {
    appearance: none;
    width: 32px;
    height: 16px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
  
    &:checked {
        background-color: #30a2ff;
  
        &::after {
            transform: translateX(16px);
            transition: 0.4s ease-in-out;
        }
    }
  
    &::after {
        position: absolute;
        content: "";
        top: 3px;
        left: 3px;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        background-color: #fff;
    }
}
  
.btn {
    background-color: #30a2ff;
    border: 1px solid #30a2ff;
    width: 350px;
    border-radius: 20px;
    padding: 10px 0;
    color: #fff;
    cursor: pointer;
}

a {
    color: white;
    text-decoration: none;
}
