form {
    display: flex;
    flex-direction: column;
    place-items: center;
    margin-bottom: 100px;
}
label {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
}
input {
    width: 40%;
    padding: 10px 5px;
    border-radius: 6px;
    border: 1px solid black;
}
button {
    margin-top: 30px;
    width: fit-content;
    padding: 8px;
    font-size: 18px;
    background-color: gray;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

input:focus, select:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0,123,255,0.4);
}
@media (max-width: 768px) {
    input {
        width: 60%;
    }
}