* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    position: relative;
}
.logo {
    position: absolute;
    top: 30px;
    right: 50px;
}
.app {
    margin-left: 100px;
    /* max-width: 1400px; */
    height: calc(100vh - 80px);
}
.topbar {
    font-size: 14px;
    margin-bottom: 40px;
    padding-top: 20px;
    display: flex;
    width: 450px;
    justify-content: space-between;
}

.topbar p {
    opacity: 50%;
    /* margin-right: 260px; */
}
.topbar a {
    text-decoration: underline;
    color: black;
}
.personal-data {
    display: flex;
    justify-content: flex-start;
    height: 90%;
}
.personal-data-input {
    width: 450px;
    margin-right: 75px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.personal-data-input form input:not(input[type=checkbox]) {
    font-family: 'neue-haas-unica', sans-serif;
    width: 450px;
    height: 25px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid gray;
    color: black;
}
::placeholder { 
    color: #999999;
    /* opacity: 1;  */
}
.personal-data-input form input:focus {
    outline: none;
}
.personal-data-input p {
    font-size: 18px;
    font-weight: 500;
}
.autocomplete-items {
    max-height: 300px !important;
    overflow-y: auto !important;
}
.forgot-password a  {
    font-size: 12px;
    font-weight: 400;
    color: #868788;
    text-decoration: none;
    
}
.control {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.btn-back,
.btn-next {
    width: 160px;
    height: 45px;
    /* margin-right: 30px; */
    border-radius: 70px;
    /* margin-top: 80%; */
    /* position: absolute; */
    /* bottom: 0;
    left: 0; */
    
}
.btn-back {
    border: 1px solid #000000;
    background-color: white;
}
.btn-back:hover {
    color: black;
    background-color: #EFEFEF;
    opacity: 50%;
}
.btn-next {
    border: 1px solid #000000;
    background-color: black;
    color: white;
}
.btn-next:hover {
    background-color: #464646;
}
.image {
    margin-right: 150px;
    margin-left: 260px;
    position: relative;
    display: flex;
}
.image img {
    /* width: 300px;
    height: 600px; */
    min-width: 300px;
    width: 100%;
    border-radius: 33px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}
.image p {
    position: absolute;
    bottom: 10px;
    left: 40px;
    color: white;
    font-size: 11px;
}
@media screen and (max-width: 992px) {
    .image {
        display: none;
    }
}
.hearth-pointer{
	cursor: pointer;
}