﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans';
}

label {
    font-weight: bold;
    font-size: 18px;
    line-height: 29px;
    color: #2d160f;
}

.txtbox {
    background: #FFFFFF;
    border-radius: 5px;
    border: none;
    height: 40px;
    outline: none;
    padding: 0 10px;
    margin: 5px 0;
}

.txtarea {
    background: #FFFFFF;
    border-radius: 5px;
    width: 200%;
    height: 120px;
    outline: none;
    padding: 10px;
}

.ddl {
    background: #FFFFFF;
    border-radius: 5px;
    border: none;
    width: 100%;
    height: 40px;
    outline: none;
    padding: 0 10px;
    margin: 5px 0;
}

.btn {
    height: 40px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    line-height: 32px;
    align-items: center;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
}

.btnSubmit {
    width: 100%;
    background: #0191B4;
    color: #FFFFFF;
    border: 2px solid #0191B4;
    transition: 0.1s ease-in;
}

    .btnSubmit:hover {
        background: #fff;
        color: #0191B4;
    }


#registration {
    margin: 20px 0;
    background: #fff;
    
}

.registration {
    background: linear-gradient(85.18deg, #FF7E5F 23.84%, #FEB47B 76.23%);
    width: 30%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.registration__heading {
    font-weight: bold;
    font-size: 35px;
    line-height: 56px;
    text-align: center;
    color: #2d160f;
    margin-bottom: 20px;
}

.registration__form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 5px 0;
}

.col {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-full-width {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.registration__form > .row > a {
    font-size: 16px;
    color: #2d160f;
    text-decoration: none;
    font-weight: bold;
    transition: 0.1s ease-in;
}

    .registration__form > .row > a:hover {
        color: #0191B4;
    }

.captcha {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .captcha > .captcha__img {
        width: 48%;
        height: 40px;
    }

    .captcha > .btnRefresh {
        width: 48%;
        background: #fff;
        color: #0191B4;
        border: 2px solid #0191B4;
        transition: 0.1s ease-in;
    }

        .captcha > .btnRefresh:hover {
            background: #0191B4;
            color: #fff;
        }

.pnl_success > div,
.pnl_error > div {
    display: block;
    margin: 1em 0;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
}

.pnl_success > div {
    color: green;
}

.pnl_error > div {
    color: red;
}

@media(max-width:1600px) {
}

@media(max-width:1366px) {
    .registration {
        width: 40%;
    }
}

@media(max-width:1280px) {
}

@media(max-width:1024px) {
    .registration {
        width: 50%;
    }
}

@media(max-width:768px) {
}

@media only screen and (min-device-width : 320px) and (max-device-width : 420px) {
    label {
        font-size: 16px;
    }

    .registration {
        width: 80%;
    }

    .registration__heading {
        font-size: 22px;
        margin-bottom: 10px;
    }
}
