body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #add8e6, #d7d7f7); 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

.opcoes {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin: 10px 0;
    font-weight: bold;
    color: #4a4a4a;
}

button {
    margin-top: 15px;
    padding: 12px 20px;
    border: none;
    background-color: #6c63ff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease; 
}

button:hover {
    background-color: #5a54e0;
    transform: scale(1.05);
}

.cadeado {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.haste {
    width: 50px;
    height: 40px;
    border: 7px solid #6c63ff;
    border-bottom: none;
    border-radius: 25px 25px 0 0;
    background-color: transparent;
}

.corpo {
    width: 70px;
    height: 50px;
    background-color: #6c63ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.asteriscos {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}