@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,500;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Red Hat Mono', monospace;
}

/* flex */

.main , .report-box,.report-box button[type="submit"]{
    display: flex;
    align-items: center;
    justify-content: center;
}

.success, .false{
    display: flex;
    align-items: center;
}

.main{
    width: 100%;
    min-height: 100vh;
    justify-content: unset;
    
    flex-direction: column;
}

.report-box{
    margin: 30px 0;
    min-height: 300px;
    width: 600px;
    max-width: 95%;

    border-radius: 5px;
    background-color: #ddd;

    box-sizing: border-box;
    padding: 10px;

    flex-direction: column;
}

.report-box img{
    max-width: 90%;
    margin-top: 20px;
}

.report-box form{
    width: 100%;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.report-box input[type="text"]{
    height: 35px;
    width: 90%;

    font-size: 18px;
    padding: 2px 10px;
    box-sizing: border-box;

    border-radius: 5px;

    border: 1px solid black;
}

.rgh{
    font-size: 30px;
    font-weight: 600;
}

.gi{
    margin-top: 10px;
    margin-bottom: 20px;
}

.report-box select{
    height: 40px;
    width: 90%;
    border-radius: 5px;

    border: 1px solid black;
    font-size: 18px;
    padding: 2px 10px;
    box-sizing: border-box;

    margin-top: 20px;

    background-color: #fff;
}

.report-box button[type="submit"]{
    height: 40px;
    padding: 2px 10px;
    box-sizing: border-box;
    background-color: white;
    border: none;
    border-radius: 5px;

    margin-top: 20px;
    margin-bottom: 5px;
}

.success{
    min-height: 40px;
    width: 95%;

    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;

    margin-bottom: 10px;
    margin-top: 20px;

    box-sizing: border-box;
    padding: 5px 10px;

    border-radius: 5px;
}

.false{
    min-height: 40px;
    width: 95%;

    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;

    margin-bottom: 20px;

    box-sizing: border-box;
    padding: 5px 10px;

    border-radius: 5px;

    display: none;
}

.h-captcha{
    margin-top: 20px;
}

#user-error,#Reason-error{
    display: block;
}

.h-captcha{
    max-width: 90%;
}

.report-box textarea{
    height: 100px;
    width: 90%;

    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;

    border-radius: 5px;

    border: 1px solid black;

    margin-top: 20px;
}