body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh; 
}
#main {
    flex: 1; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

/*header*/

/*colopicker*/
#colorSelector {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white; 
    padding: 10px; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0); 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    width: 600px;
    margin: auto; 
}


#colorSelector h1 {
    font-size: 24px;
    color: #333; 
    margin-bottom: 15px; 
}

.color-picker-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    margin-bottom: 15px;
}

#colorPicker {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    border: none;
}

#colorPicker:hover {
    cursor: pointer;
}

.picker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/*hasta aqui*/
#botonForm {
    background-color: white; 
    color: black; 
    padding: 10px 20px;  
    cursor: pointer; 
    font-size: 16px; 
    transition: background-color 0.3s; 
    height: 60px;
    border: none;
}

#botonForm:hover {
    border: 1px solid black; 
    border-radius: 25px; 
    color: rgba(0, 0, 0, 0.209);
}