body {
    padding-top: 0 !important;
}

.all {
    display: flex;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .recuperar-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;
        top: -8rem;
    }
}

@media (max-width: 640px) {
    .recuperar-panel {
        padding: 1.5rem 1rem;
    }
    
    .recuperar-container {
        max-width: 100%;
    }
    
    .button-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .enviar-button,
    .reenviar-button {
        width: 100%;
    }
    
    .voltar-link {
        text-align: center;
        margin-left: 0;
        width: 100%;
    }
}

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

.recuperar-container {
    width: 100%;
    max-width: 600px;
}

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

.logo-container {
    position: relative;
    top: -20rem;
    left: -12rem;
    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: rgb(0, 0, 0);
}

.info-box {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid;
    border-left: 6px solid #673AB7;
    color: rgb(0, 0, 0);
    min-height: 3rem;
}

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

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: rgb(0, 0, 0);
}

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

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

@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;
    }
    
    .info-box {
        margin-bottom: 1rem;
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .enviar-button,
    .reenviar-button {
        height: 2.5rem;
        font-size: 0.9rem;
    }
    
    .voltar-link {
        font-size: 0.8rem;
    }
    
    .timer-text {
        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;
    }
    
    .info-box {
        margin-bottom: 0.8rem;
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .enviar-button,
    .reenviar-button {
        height: 2.2rem;
        font-size: 0.85rem;
    }
    
    .voltar-link {
        font-size: 0.75rem;
        padding: 0.3rem;
    }
    
    .timer-text {
        font-size: 0.75rem;
    }
}

.button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.enviar-button {
    height: 3rem;
    width: 10rem;
    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;
    padding: 0 2rem;
}

.reenviar-button {
    height: 3rem;
    width: 10rem;
    background-color: #333;
    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;
    padding: 0 1.5rem;
}

.enviar-button:hover,
.reenviar-button:hover {
    background-color: #444;
}

.voltar-link {
    width: 10rem;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    margin-left: 1rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.voltar-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.timer-text {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 1rem;
}

.welcome-panel {
    width: 80%;
    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) {
    .recuperar-panel {
        display: none;
    }
    .welcome-panel{
        width: 100%;
    }
}