* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Montserrat"; */
    font-family: cursive;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #99d128;
}

.container {
    position: relative;
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    padding: 15px 25px 25px;
    background: #fff;
}

header {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.input_field {

    position: relative;
    height: 45px;
    margin-top: 15px;
    width: 100%;
}

.refresh_button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: #14141c;
    height: 30px;
    width: 30px;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}

.refresh_button:active {
    transform: translateY (-50%);
}

.input_field input,
.button button {
    padding: 0 15px;
    border: 1px solid red;
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 8px;
}

.input_field input {
    padding: 0 15px;
    border: 1px solid gray;
}

.captch_box input {
    color: #6b6b6b;
    font-size: 22px;
    pointer-events: none;
}

.message {
    font-size: 14px;
    margin: 14px 0;
    color: #222620;
    display: none;
}

.message.active {
    display: block;
}

.button button {
    background: #14141c;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.button button:active {
    transform: scale (0.99);
}

.button.disabled {
    opacity: 0.9;
    pointer-events: none;
}