.entryForm {
	width: 60%;
	margin: auto;
}


.entryForm label {
    display: block;
    margin: 10px 0 5px;
}

.entryForm input, .entryForm textarea {
    display: block;
	width: 100%;
	padding: 10px;
	font-size: 1.3rem;
    margin-bottom: 1rem;
	border: solid lightgray 1px;
	border-radius: 8px;
}

.entryForm textarea {
	width: 100%;
	height: 20vh;
	display: block;
}

.entryForm button {
    padding: 10px 30px;
    background: gray;
    color: white;
    border: none;
    cursor: pointer;
	border-radius: 4px;
	font-size: 1.3rem;
}

.entryForm button:hover {
    background: #183B50;
}

.entryForm .switch {
    position: relative;
    display: inline-block;
    width: 6vh;
    height: 3.4vh;
    margin: 1vh 0;
}

.entryForm .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.entryForm .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 3.4vh;
}

.entryForm .slider:before {
    position: absolute;
    content: "";
    height: 2.6vh;
    width: 2.6vh;
    left: 0.4vh;
    bottom: 0.4vh;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}

.entryForm input:checked + .slider {
    background-color: #183B50;
}

.entryForm input:checked + .slider:before {
    transform: translateX(2.6vh);
}

.entryForm .slider:active:before {
    width: 3vh;
}

.entryForm .crew-member {
    border-top: 1px dashed lightgray;
    padding-top: 10px;
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-grid .form-full {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.crew-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: center;
}

.crew-row input {
    flex: 1 1 180px;
    min-width: 100px;
}

.col-span-2 {
    grid-column: span 2;
}
.col-span-3 {
    grid-column: span 3;
}


.formulaire-login {
    max-width: 600px;
    margin: 0 auto;
	padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formulaire-login h2 {
    text-align: center;
    color: #333;
}

.formulaire-login label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

.formulaire-login input,
.formulaire-login textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire-login input[readonly] {
	background-color: lightgray;
	color: black;
}

.formulaire-login select{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulaire-login button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.formulaire-login button:hover {
    background-color: #0056b3;
}