@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;500;900&display=swap');

body{
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/*.page-content{*/
/*    flex: 1;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

h1{
    font-size: 1.2em;
    font-family: 'Raleway', sans-serif;
}

.logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 150px;
}

.form-wrapper{
    background: #eeeeeeeb;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #dddd;
}


.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: #fff;  /* culoarea spinner-ului */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.model-image{
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1px dotted;
    padding: 10px;
    border-radius: 10px;
    border-color: #9a3b49;
}

.model-image img{
    max-width: 450px;
    max-height: 350px;
    object-fit: cover;
}

.form-control{
    height: unset !important;
}


.ft-section{
    padding: 0;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ft-section .btn-start{
    margin-bottom: 3rem;
}

#guideModal h6{
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.ft-section .links{
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin-bottom: unset;
}


.ft-section a{
    color: #8c1f2f;
    text-decoration: underline;
}



#talentsData{
    cursor: pointer;
}