@charset "UTF-8";

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    font-family: Arial;
    font-size: 16px;
}

#login {
    border: 1px solid #C8007E;
    border-radius: 12px;
    width: 640px;
    text-align: center;
    padding: 32px 0px 32px 0px;
}

.btn {
    background-color: #C8007E29;
    border: 2px solid transparent;
    border-radius: 100px;
    font-weight: bold;
    margin-top: 15px;
    width: 400px;
    height: 50px;
    font-size: inherit;
}

.btn[value="NONE"] {
    background-color: white;
    border: 2px solid #C8007E29;
}

.btn:hover {
    border: 1px solid #C8007E;
}

input:hover {
    border: 1px solid #C8007E;
}

#logo {
    width: 190px;
    margin-top: 90px;
    margin-bottom: 35px;
    text-align: center;
}

input {
    border: 1px solid #ababab;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 18px;
    margin-top: 12px;
    width: 376px;
    padding-left: 12px;
    padding-right: 12px;
}

label {
    display: block;
    font-weight: bold;
    font-size: inherit;
}

.msg {
    width: 565px;
    padding-left: 50px;
    padding-right: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid red;
    background-color: #feebf0;
    border-radius: 12px;
    margin-top: 25px;
    background-image: url('../images/ic_warning.svg');
    background-repeat: no-repeat;
    background-position-x: 20px;
    background-position-y: 18px;
}

td, th {
    text-align: left;
}

#info {
    margin-top: 25px;
}

h3 {
    border-top: 2px solid black;
    padding-top: 12px;
}

form label {
    margin-top: 25px;
}

#verificationCode {
    letter-spacing: 12px;
    text-align: center;
    font-size: 24px;
}

#verificationCode:focus {
    outline: none;
}

#qrcode {
    padding: 25px;
}

.helptext {
    font-weight: normal;
    padding-left: 60px;
    padding-right: 60px;
}

.accordion {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    background-color: white;
    font-weight: bold;
    font-size: inherit;
    border-top: 1px solid #ababab;
    border-bottom: 1px solid transparent;
}

.accordion:hover {
    border-top: 1px solid #C8007E80;
}

.active {
    /*! border: 1px solid green; */
    
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#faq {
    width: 640px;
    margin-top: 25px;
}

#faq h2 {
    text-align: center;
}