body {
    padding-top: 0 !important;
}

.all {
    display: flex;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.login-panel {
    width: 40%;
    background-color: #673AB7;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .login-panel {
        width: 45%;
        padding: 1.5rem;
    }
    
    .welcome-panel {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .login-panel {
        width: 100%;
        padding: 2rem 1.5rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .welcome-panel {
        display: none;
    }
    
    .logo-container {
        margin: 0 0 1.5rem 0;
    }
}

@media (max-width: 640px) {
    .login-panel {
        padding: 1.5rem 1rem;
    }
    
    .login-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-panel {
        padding: 1rem 0.75rem;
    }
    
    .logo-auth {
        width: 10rem;
        left: 8rem;
    }
    
    .logo-container {
        width: 20rem;
        left: -16rem;
        height: 9rem;
    }
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.logo-auth{
    position: relative;
    left: 12rem;
    top: 0.3rem;
    width: 13rem;
}

.logo-container {
    position: relative;
    top: -2rem;
    left: -20rem;
    background: #D7D7D7;
    height: 11rem;
    width: 25rem;
    border-radius: 6rem;
    margin: -30px 0 20px 0;
}

.logo svg {
    width: 5rem;
    height: 5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .separator {
        margin: 1.5rem 0;
    }
}

@media (max-width: 640px) {
    h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    input {
        height: 2.5rem;
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    .login-button {
        height: 2.5rem;
        font-size: 0.9rem;
    }
    
    .register-button {
        height: 2.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .separator {
        margin: 1rem 0;
    }
    
    .separator span {
        font-size: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .forgot-password a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    label {
        font-size: 0.75rem;
    }
    
    input {
        height: 2.2rem;
        font-size: 0.85rem;
        padding: 0 0.6rem;
    }
    
    .login-button,
    .register-button {
        height: 2.2rem;
        font-size: 0.85rem;
    }
    
    .register-options h3 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    height: 3rem;
    background-color: white;
    color: #333;
    border: none;
    border-radius: 0.375rem;
    padding: 0 1rem;
    font-size: 1rem;
}

.login-button {
    width: 100%;
    height: 3rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-button:hover {
    background-color: #333;
}

.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.forgot-password a:hover {
    color: white;
}

.separator {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.separator span {
    position: relative;
    background-color: #673AB7;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.register-options h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.register-button {
    width: 100%;
    height: 3rem;
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid white;
    border-radius: 0.375rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.register-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.welcome-panel {
    width: 60%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.welcome-container {
    max-width: 32rem;
    text-align: center;
}

.welcome-container h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
}

.welcome-container img {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
}

@media (max-width: 1024px) {
    .welcome-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-container img {
        max-height: 50vh;
    }
}

@media (max-width: 768px) {
    .welcome-panel {
        display: none;
    }
}

.arrow-right {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
}

.arrow-right::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: white;
}

.arrow-right::before {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    width: 6px;
    height: 6px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}