﻿@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.captchaContainer {
    display: flex;
/*    align-items: center;
    justify-content: center;
*/    
    flex-direction: row;
}

#captchaBackground {
    height: 150px;
    width: 300px;
    /*background-color: #2d3748;*/
    
}

#captchaHeading {
    color: white;
}

#captcha {
    /*border:1px solid red;*/
/*    height: 100px;
    width: 80%;
*/    
    width:300px;
    height:150px;
    font-size: 30px;
    letter-spacing: 3px;
    /*margin: auto;*/
    display: block;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*#submitButton {
    margin-top: 2em;
    margin-bottom: 2em;
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
}*/

#refreshButton2 {
    background: var(--accent-color);
    border: 10px;
    color:white;
    width:32px;
    height:32px;
    border-radius:8px;
    font-weight: bold;
}

#textBox {
    height: 25px;
}

.incorrectCaptcha {
    color: #FF0000;
}

.correctCaptcha {
    color: #22FF00;
}