
/* Registration */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.618;
    font-family: sans-serif;
}

.booking{
    padding: 65px;
}

:root {
    --dark-body: #4d4c5a;
    --dark-main: #141529;
    --dark-second: #79788c;
    --dark-hover: #323048;
    --dark-text: #f8fbff;
    --light-body: #f3f8fe;
    --light-main: #fdfdfd;
    --light-second: #c3c2c8;
    --light-hover: #edf0f5;
    --light-text: #151426;
    --blue: #007497;
    --white: #fff;
    --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --font-family: cursive;
}

.light {
    --bg-body: var(--light-body);
    --bg-main: var(--light-main);
    --bg-second: var(--light-second);
    --color-hover: var(--light-hover);
    --color-txt: var(--light-text);
}

@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Open+Sans&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}

h1 {
    font-size: 2rem;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
}

h1,
p {
    margin: 1em auto;
    text-align: center;
}

form {
    
    box-shadow: 5px 5px 10px #3b3737;
    border: 1px solid black;
    border-radius: 10px;
    width: 60vw;
    max-width: 500px;
    min-width: 300px;
    margin: 0 auto;
    padding: 30px;
}

fieldset {
    margin-right: 20px;
    border: none;
    padding: 1.2rem 0;
}

label {
    font-size: 16px;
}

.inline {
    
    width: unset;
    margin: 0 0.5em 0 0;
    vertical-align: middle;
}

#accomodation{
    position: static;
}

input,
textarea,
select {
    padding: 10px;
    margin: 7px 0 0 15px;
    width: 100%;
    min-height: 2em;
}

select,
.room {
    width: 7rem;
    padding: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, .1) 0 0 8px;
}

select {
    color: black;
    position: relative;
    border-radius: 5px;
    display: inline-block;
}

input,
textarea {
    border: 1px solid black;
    border-radius: 5px;
    background-color: white;
}

.submit-btn {
    display: block;
    padding: 10px;
    width: 10%;
    margin: 1em auto;
    border: 3px solid black;
    border-radius: 30px;
    font-size: 27px;
    text-decoration: solid;
    background-color: white;
    min-width: 200px;
    transition: ease 0.20s;
}

.submit-btn:hover{
    cursor: pointer;
    color: darkgreen;
    border: 3px solid darkgreen;
}