/* Basic style for the labels */
.label-style {
    width: 100%;
    border-radius: 7px;
    padding: 5px;
    font-size: 12px;
    vertical-align: top;
    margin-top: 1px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    background-color: #ffcccc;
    background: linear-gradient(to bottom, #ffcccc, #e0e0e0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    /* Dark white border */
    transition: all 0.2s ease;
}

/* Sink effect on active (pressed) state */
.label-style:active {
    background: linear-gradient(to bottom, #e0e0e0, #ffffff);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(3px);
}

.label-style:hover {
    transform: translateY(1px);
}

#bannerimage {
    width: 100%;
    background-image: url('/style/images/FondVert.png');
    height: 60px;
    background-color: purple;
    background-position: center;
    border-radius: 5px;
    border: 1px solid #333;
    /* Dark white border */
    box-shadow: 3px 2px 0 1px rgba(0, 0, 0, 0.2);
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

input[type=text],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 12px;
    resize: vertical;
}

input[type=submit] {
    background-color: #FF0000;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    padding: 20px;
}

input[type=radio] {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    margin-left: 20px;
}

.enterbutton {
    padding: 10px;
    font-size: 80px;
    margin-top: 20px;
    margin-bottom: 20px;
   
    border: 3px solid darkgoldenrod;
    border-radius: 12px;
    box-shadow: 10px 7px 0 0px rgba(0, 0, 0, 0.2);
}


.enterbutton:hover {
    transform: translateX(8px) translateY(8px);
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.enterbutton {
    padding: 10px;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    border: 3px solid darkgoldenrod;
    border-radius: 12px;
    box-shadow: 10px 7px 0 0px rgba(0, 0, 0, 0.2);
}


.enterbutton:hover {
    transform: translateX(8px) translateY(8px);
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}
