﻿
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');

body {
    background: white;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    font-family: 'Mulish', sans-serif;
}

.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 850px;
    height: 350px;
    border-radius: 10px;
}

._title {
    font-weight: bold;
    color: white;
    width: 100%;
    background-color: #006adb;
    text-align: center;
    margin-bottom: 2rem;
}

.spancl {
    /*font-size: 2rem;*/
    font-size: 22px;
    line-height: 36px;
}

.w_text {
    max-width: 100%;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

.form {
    margin-bottom: 10px;
    color: black;
    font-size: 15px;
}

.msg {
    color: black;
    font-size: 15px;
}

.form__email {
    padding: 7px 7px;
    border-radius: 5px;
    border: 1px solid #CAD3DB;
    width: 250px;
    font-size: 15px;
    color: #0F121F;
}

    .form__email:focus {
        outline: 1px solid #3D9FFF;
    }

.form__button {
    display: inline-block;
    padding: 7px 15px;
    font-size: 17px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: black;
    background-color: white;
    border: none;
    border-radius: 8px;
    border: 1px solid gray
}

    .form__button:hover {
        background-color: lightgray
    }

    .form__button:active {
        background-color: gray;
        box-shadow: 0 1px gray;
        transform: translateY(1px);
    }

.notice {
    width: 345px;
}

.success {
    display: none;
}

.txtbox {
    padding: 3;
}

.error {
    max-width: 100%;
    text-align: center;
    line-height: 1;
    margin-bottom: 30px;
    color: red;
}

.dialogue-box {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.dialogue-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}
