/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#f3efe8;

    font-family:Arial,Helvetica,sans-serif;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:40px 15px;

}

/* ==========================
   CONTAINER
========================== */

.container{

    width:100%;

    max-width:560px;

}

/* ==========================
   CARD
========================== */

.card{

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    box-shadow:

    0 15px 35px rgba(0,0,0,.08);

}

.card h2{

    font-size:30px;

    margin-bottom:10px;

}

.card p{

    color:#777;

    margin-bottom:25px;

    line-height:1.6;

}

/* ==========================
   LABEL
========================== */

label{

    display:block;

    margin-bottom:10px;

    font-weight:bold;

}

/* ==========================
   INPUT
========================== */

input,
select,
textarea{

    width:100%;

    padding:15px;

    border-radius:14px;

    border:1px solid #d9d9d9;

    font-size:15px;

    margin-bottom:22px;

    outline:none;

    transition:.25s;

}

input:focus,
select:focus,
textarea:focus{

    border-color:#2b6ee8;

    box-shadow:

    0 0 0 4px rgba(43,110,232,.12);

}

/* ==========================
   TEXTAREA
========================== */

textarea{

    resize:vertical;

    min-height:240px;

    line-height:1.7;

}

/* ==========================
   ROW
========================== */

.row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

}

#count{

    color:#0a8c43;

    font-weight:bold;

}

/* ==========================
   BUTTON
========================== */

button{

    width:100%;

    background:#132018;

    color:white;

    border:none;

    border-radius:14px;

    padding:18px;

    cursor:pointer;

    font-size:16px;

    font-weight:bold;

    transition:.3s;

}

button:hover{

    background:#24372d;

}

button:disabled{

    opacity:.5;

    cursor:not-allowed;

}

/* ==========================
   LOADING
========================== */

.loading{

    margin-top:20px;

    text-align:center;

    color:#0a8c43;

    font-weight:bold;

}

/* ==========================
   MESSAGE
========================== */

#msg{

    margin-top:20px;

    text-align:center;

    font-weight:bold;

    min-height:25px;

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.card{

    padding:25px;

}

.card h2{

    font-size:25px;

}

button{

    padding:16px;

}

}