input {
    font-size: 2vw;
    background: black;
    color: white;
}

#form_profile {
    /* width: 30%; */
    width: 60vw;
    /* height: 100%; */
    background: rgba(127, 125, 127, 0.65);
    font-size: 2vw;
    display: inline-block;
    text-align: center;
    margin: 0;
    font-family: Verdana;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

#form_profile_header {
    font-size: 1.7vw;
    color: white;
    margin-bottom: 30px;
    margin-top: 25px;
    display: block;
    background: black;
    font-weight: bold;
    padding: 5px 0 5px 0;
}

#form_profile_bottom {
    display: inline-block;
    width: 100%;
    padding: 0.7vw;
}

#form_profile_return {
    display: inline-block;
    text-align: left;
    margin: 0 0 1vw 0;
    border-bottom-left-radius: 15px;
    width: 45%;
}

#form_profile_registration {
    display: inline-block;
    text-align: right;
    margin: 0 0 1vw 0;
    border-bottom-right-radius: 15px;
    width: 45%;
	cursor: pointer;
}

.img_separate_row {
    display: inline-block;
    background: url("/images/general/separate_row.png") no-repeat;
    background-size: contain;
    background-attachment: fixed;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -o-background-size: contain;
    text-align: center;
    background-position: center;
    height: 2.5vw;
    width: 9vw;
}

.img_dragon_left {
    display: inline-block;
    background: url("/images/general/dragon.png") no-repeat;
    background-size: contain;
    background-attachment: fixed;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -o-background-size: contain;
    text-align: center;
    background-position: center;
    height: 2.5vw;
    width: 5vw;
}

.img_dragon_right {
    display: inline-block;
    background: url("/images/general/dragon.png") no-repeat;
    background-size: contain;
    background-attachment: fixed;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -o-background-size: contain;
    text-align: center;
    background-position: center;
    height: 2.5vw;
    width: 5vw;
    transform: scale(-1, 1);
}

.form_profile_separate_row {
    display: inline-block;
    margin: 0.5vw;
    width: 25vw;
    margin-left: 25vw;
}

.form_profile_row_header {
    width: 23vw;
    display: inline-block;
    text-align: right;
}

.form_profile_input {
    width: 25vw;
    display: inline-block;
    text-align: center;
}

.form_profile_bottom_caption {
    background: black;
    color: white;
    font-size: 1.5vw;
    padding: 0.5vw;
    border-radius: 15px;
}

/* Для книжной ориентации */
@media screen and (orientation: portrait) { 
    #form_profile_header {
      font-size: 1.7vh;
    }
    #form_profile {
        width: 30vh;
        font-size: 1.7vh;
    }
    
    .img_separate_row {
        height: 2.5vh;
    }
    
    .form_profile_separate_row {
        margin: 0.5vh;
        width: 30vh;
    }
    
    .form_profile_input {
        width: 25vh;
        font-size: 2vh;
    }
    
    .form_profile_row_header {
        width: 40vw;
        text-align: center;
    }
    
    .img_separate_row {
        height: 2.5vh;
        width: 11vh;
    }
    
    .img_dragon_left {
        height: 2.5vh;
        width: 8vh;
    }
    
    .img_dragon_right {
        height: 2.5vh;
        width: 8vh;
    }
    
    .form_profile_bottom_caption {
        font-size: 1.5vh;
        padding: 0.5vh;
    }
    
    #form_profile_bottom {
        padding: 0.7vh;
    }
    
    #form_profile_return {
        margin: 3vh 0 2vh 0;
        width: 100%;
        text-align: center;
    }
    
    #form_profile_registration {
        margin: 0 0 1vh 0;
        width: 100%;
        text-align: center;
    }
}