body, html {
    height: 100%;
}

.main {
    padding: 10px 10px 0 10px;
}

section {
    padding-left: 15px;
}

body {
    background: white url("../img/Background2.jpg") no-repeat fixed center bottom;
    background-size: cover;
}

.register-alert {
    border: 0 !important;
    border-radius: 0 !important;
    position: absolute !important;
    width: 100%;
}

.input_title{
    color:rgba(164, 164, 164, 0.9);
    padding-left:3px;
    margin-bottom: 2px;
}

.register_title{
    font-style: normal;
    font-weight: 100;
    color: rgba(164, 164, 164, 0.44);
}

.feedback {
    display: none;
    width: 100%;
    font-size: 80%;
    color: #dc3545;
}

.shown {
    display: inline;
}

.hidden {
    display: none;
}

hr {
    width:100%;
}

.container {
    height: 100%;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
 * Card component
 */
.card {
    max-width: 350px;
    width: 350px;
    background-color: #FFFFFF;
    /* just in case there no content*/
    padding: 30px;
    margin: 0 auto 25px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}