@import "small_screen.css";

@font-face {
    font-family: Gotham;
    src: url("../fonts/Gotham-Light.otf") format("opentype");
}

@font-face {
    font-family: Gotham;
    font-weight: bold;
    src: url("../fonts/Gotham-Bold_0.otf") format("opentype");
}

body {
    font-family: Gotham, sans-serif;
    font-weight: 100;
    margin: 0;
    color: #443f3f;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

input[type="radio"]:checked:after, input[type="radio"]:after {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: -4.5px;
    left: -8px;
    position: relative;
    content: '';
    display: inline-block;
    border: 2px solid white;
    cursor: pointer;
}

input[type="radio"]:checked:after {
    background-color: #51abae;
}

input[type="radio"]:after {
    background-color: #868686;
}

input[type="text"], input[type="password"] {
    font-weight: 700;
    color: #767676;
    background-color: #fafafa;
    border: 1px solid #dbdbdb;
    height: 40px;
    padding: 4px 20px;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

}

button {
    min-width: 100px;
    font-size: 15px;
    color: white;
    background-color: #93a6a7;
    border: none;
    padding: 5px 10px;
    text-transform: uppercase;
    cursor: pointer;
    height: 40px;
}

.primary-button {
    background-color: #51abae;
}

#banner, #footer {
    line-height: 70px;
    height: 70px;
    background-color: #51abae;
    color: white;
}

#banner {
    justify-content: space-between;
    font-weight: 500;
    display: flex;
    align-items: center;
}

#banner > * {
    vertical-align: middle;
}

#banner > #rightMenu > a{
    margin-left: 20px;
}

#banner img {
    height: 30px;
    cursor: pointer;
}

#content {
    padding-bottom: 30px;
    padding-top: 30px;
    min-height: calc(100vh - 100px);
}

input.error {
    border: 1px solid red;
}

.functional-content {
    height: calc(100vh - 250px);
    width: 100%;
    margin-bottom: 20px;
}

.photo-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container, .title-container {
    width: 100%;
    align-items: flex-start;
}

.bottom-panel {
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
}

.bottom-panel > * {
    display: inline-block;
}
