body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(45deg, rgb(240, 147, 8), rgb(250, 194, 111));
    margin: 0;
    padding: 0;
}

div {
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 80px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    max-width: 400px; /* Limita a largura máxima */
    width: 90%; /* Largura percentual para responsividade */
}

input {
    padding: 15px;
    border: none;
    outline: none;
    font-size: 15px;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
    border-radius: 5px; /* Adicionando borda arredondada */
    background-color: #f5f5f5; /* Fundo mais suave para os inputs */
}

input:focus {
    background-color: #fff; /* Foco nos campos de entrada */
    border: 2px solid rgb(179, 124, 23); /* Borda ao focar */
}

button {
    background-color: rgb(179, 124, 23);
    border: none;
    padding: 15px;
    width: 50%;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transição suave para hover */
}

button:hover {
    background-color: rgb(248, 191, 3);
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: url("logoo.png");
    background-size: cover;
    background-position: center;
    margin-bottom: 20px; /* Adiciona margem abaixo da imagem */
    max-width: 100%; /* Garante que a imagem se ajuste no container */
    max-height: 200px; /* Limita a altura máxima da imagem */
}

@media (max-width: 768px) {
    div {
        padding: 40px; /* Reduz o padding para telas menores */
    }

    .profile-picture {
        width: 150px;
        height: 150px;
    }

    button {
        width: 70%; /* Botões mais largos em dispositivos menores */
    }
}

@media (max-width: 450px) {
    div {
        padding: 20px; /* Reduz ainda mais o padding em telas pequenas */
    }

    button {
        width: 80%; /* Botão quase com largura total em dispositivos móveis */
    }
}
