.notification {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.notification.is-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.is-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification.is-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.notification.is-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.login-box{
    border-radius: 15px;
    background: rgb(255, 255, 255);
    padding: 20px;
}
.title{
    color: #ffffff !important;
}
.form-signup{
    background-color: rgb(245, 245, 245);
    border-radius: 15px;
    padding: 10px;
    font-size: 1rem;
}
.field-signup{
    padding: 5px;
    display: block;
    border-radius: 15px;
}
.field-signup-captcha{
    width: 100%;
    padding: 5px;
    display: flex;
    border-radius: 15px;

}
.control-captcha{
    width: 50%;
}
.captcha-image{
    width: 80%;
    margin-top: 13%;
    margin-left: 10%;
    
}
.captcha-image img{
    border-radius: 5px;

}
.captcha-input{
    padding: 5px;
}
.captcha-input input{
   width: 80%;
   margin-bottom: 5%;
   
   
}
.captcha-input label{
    text-align: left;
    font-size: 1rem;
}


.input-signup{
    height: 50px;
    border-radius: 10px;
}
.button_signup{
    width: 35%;
    color: #ffffff;
    background-color:#032445;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    border: 1px solid rgb(56,60, 81);

}
.signup-box-alt{
    border-radius: 15px;
    margin-top: 5%;
    padding: 10px;
    background: rgb(255, 255, 255);
    color: rgb(32, 178, 215);
    font-weight: bold;
    font-size: 1rem;

}
.input-captcha::placeholder{
    font-size: 0.9rem;
   
}
@media (max-width: 500px) {
    .button_signup{
        width: 50%;

    }
    .field-signup-captcha{
       
        flex-direction: column;
        align-items: flex-start;
    }
    .control-captcha{
        width: 100%;
        
    }
    
    .captcha-image{
        margin-left: 0%;
        width: 100%;
    }
    .input-captcha{
        width: 100%;
    }
    
    .captcha-input span,label{
        display:inline-block;
    }
    .signup-box-alt{
        font-size: 0.9rem;
    }
}