body {
    padding-top: 0 !important;
}

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

.cadastro-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) {
    .cadastro-panel {
        width: 45%;
        padding: 1.5rem;
    }
    
    .welcome-panel {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .cadastro-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) {
    .cadastro-panel {
        padding: 1.5rem 1rem;
    }
    
    .cadastro-container {
        max-width: 100%;
    }
}

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

.cadastro-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;
}

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

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

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

.cadastrar-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;
    margin-top: 1rem;
}

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

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

@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;
    }
    
    .cadastrar-button {
        height: 2.5rem;
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }
    
    .form-footer {
        margin-top: 1rem;
        font-size: 14px;
    }
    
    .login-link {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@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;
    }
    
    .cadastrar-button {
        height: 2.2rem;
        font-size: 0.85rem;
    }
    
    .form-footer {
        font-size: 13px;
    }
    
    .login-link {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

.form-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
  }
  
  .form-footer span {
    margin-right: 8px;
  }
  
  .login-link {
    color: #1a1a1a;
    background-color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    border: solid 2px #000000;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .login-link:hover {   
    background-color: #FFD600;
  }
  
.welcome-panel {
    width: 60%;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    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);
}