* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: #FFFBF4 url("images/bg_no.jpg") no-repeat top center;
    background-size: auto 100%;
    font-family: "Georama", sans-serif;
    color: #ffffff;
}

@media (max-width: 550px) {
    body {
        background-size: cover;
    }
}

.container {
    margin: 0 auto;
    max-width: 450px;
    padding: 88px 20px 50px 20px;
    text-align: center;
}

img {
    margin-bottom: 30px;
    max-width: 420px;
    width: 100%;
}

h1 {
    font-family: "Carlito", sans-serif;
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 20px;
}

p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
}

.small {
    font-size: 13px;
    line-height: 16px;
    margin: 0 auto 42px;
    max-width: 260px;
}

form {
    margin: 0 auto;
    max-width: 230px;
}

.input input, .input select {
    width: 100%;
    height: 36px;
    padding: 0 27px;
    margin-bottom: 14px;
    border: 1px solid #fff;
    border-radius: 11px;
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.input label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
}

.input select {
    -webkit-appearance: none;  /* Remove default arrow */
    -moz-appearance: none;     /* Remove default arrow in Firefox */
    appearance: none;          /* Standard for modern browsers */
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-position: right 20px center;
    background-repeat: no-repeat;
    font-family: "Georama", sans-serif;
}

.input input::placeholder {
    color: #ffffff;
    font-family: "Georama", sans-serif;
}

.input select option {
    color: #000000;
}

.error {
    display: none;
    color: red;
    font-size: 14px;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 10px;
}

.error.active {
    display: block;
}

input[type="date"] {
    width: 100%;
    height: 36px;
    padding: 0 27px;
    margin-bottom: 14px;
    border: 1px solid #ffffff;
    border-radius: 11px;
    color: #ffffff;
    background: rgba(255,255,255,0.05);
	font-family: "Georama", sans-serif;
    box-sizing: border-box;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.agree {
    margin: 36px 0 44px;
    font-size: 12px;
}

.agree > div {
    display: flex;
    align-self: center;
}

.agree input {
    border: 1px solid #ffffff;
    border-radius: 3px;
    color: #ffffff;
    background: rgba(0,0,0,0.05);
    margin-right: 12px;
    font-family: "Georama", sans-serif;
}

.agree a {
    color: #ffffff;
    text-decoration: underline;
}

.agree a:hover {
    text-decoration: none;
}

.agree span {
    margin: 5px 0 0;
}

.submit {
    width: 100%;
    height: 44px;
    margin-bottom: 36px;
    border: none;
    border-radius: 11px;
    font-size: 20px;
    color: #FFFFFF;
    background: #000000;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Georama", sans-serif;
    transition: all 0.3s ease;
}

.submit:hover {
    background: #333333;
    transition: all 0.3s ease;
}

.submit:disabled {
    opacity: 0.7;
}

.hidden {
	display: none;
}

.success-message.active {
	display: block;
}
/* Additional styling for centering success label */
.success-message {
    display: none;
	margin: 50px -20px;
	padding: 11px 16px;
	font-size: 25px;
    line-height: 36px;
    font-weight: 600;
	color: #FFF;
    background: #000;
	margin-top: 230px;
    border-radius: 13px;
}