:root {
    --primary: #137B92;
    --secondary: #189AB6;
}

* {
	font-family: Verdana;
    box-sizing: border-box;
}

.logo_container {
    display: flex;
    justify-content: center;
    margin: 50px;
}

.logo_container img {
    width: 200px;
    border-radius: 20px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.container {
    padding: 20px 40px;
    border-radius: 5px;
}

.container h1 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 30px;
}

.container a {
    text-decoration: none;
}

.btn {
    width: 100%;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    font-family: inherit;
    font-size: 15px;
    border: 0;
    border-radius: 5px;
    background-color: var(--secondary);
    color: white;
    margin-top: 50px;
	font-weight: bold;
}

.btn:hover {
    background-color: var(--primary);
}

.btn:focus {
    outline: 0;
}

.text {
    font-size: 12px;
    text-align: center;
    margin-top: 30px;
}

.form-control {
    position: relative;
    margin: 10px 40px;
}

.form-control select {
    width: 100%;
    padding: 5px;
    outline: 0;
    border: 1px solid var(--primary);
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

.form-control input {
    border: 0;
    padding: 10px 5px;
    outline: 0;
    border-bottom: 1px solid var(--primary);
    font-size: 16px;
    width: 100%;
	margin: 10px 0px;
	border-radius: 0;
}

p {
    margin: 20px 0px;
    text-align: center;
    color: var(--secondary);
    font-style: italic;
    font-size: 10px;
}

