﻿body {
}

#app-container {
    display: flex;
    justify-content: center;
}

#app {
    max-width: 700px;
    min-width: 550px;
}


.title {
    text-align: center;
}

.submit-button {
    margin-top: 20px;
    width: 100%;
    display: block;
}

.radio-label {
    font-weight: normal;
    margin-right: 20px;
    margin-bottom: 0px;
}

.input-div {
    margin-bottom: 10px;
}

.block-label {
    margin-bottom: 10px;
    display: block;
}

/*input[type="text"],
select,
textarea {
    max-width: 440px;
}*/
/*
.btn {
    float: right;
    margin-top: 7px;
    margin-bottom: 5px;
    border-radius: 5px;
}
    */
.col-md-5, .col-md-6 {
    border: 1px gray solid;
    border-radius: 5px;
}

.custom-file input {
    cursor: pointer;
}

.custom-file label {
    cursor: pointer;
}

.row {
    min-height: 20vh;
    display: flex;
    align-items: center;
}

label.required {
    color: red;
}

.error-warning {
    margin-top: 3px;
    color: #27d025;
    font-size: 16px;
    font: latoregular;
    text-align: center;
}

.tooltip1 {
    position: relative;
    display: inline-block;
    opacity: 1;
}

    .tooltip1 .tooltiptext1 {
        visibility: hidden;
        width: 250px;
        background-color: var(--color-hover);
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 20%;
    }

    .tooltip1:hover .tooltiptext1 {
        visibility: visible;
    }

@media only screen and (max-width: 575px) {
    #app {
        width: 100%;
        min-width: initial;
    }
}
