@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&family=Montserrat:wght@400;500;600&display=swap');

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #0f2f55, #76b6ff);
    font-family: 'Montserrat', sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card_cust_radius {
    border-radius: 15px;
    overflow: hidden;
    max-width: 700px;
}

.card {
    background-color: white;
    padding: 20px;
    max-width: 700px;
    width: 100%;
    text-align: left;

    font-family: 'Montserrat', sans-serif;
}

.card h3 {
    font-weight: 600;
}

.card span {
    font-weight: 400;
}

.card .login_details label {
    font-weight: 500;
}

.card .login_details button {
    color: #fff;
    background: #FF5C00;
}

.card .pw_reset {
    font-weight: 400;
    font-size: 10pt;
    text-align: center;
}

/* help icon */
.helpIcon {
    width: fit-content;
    background: #243D5A;
    color: #fff;
    padding: 20px;
    border: 2px solid #000;
    border-radius: 50%;

    position: absolute;
    right: 20px;
    bottom: 20px;

    transition: all .3s ease;
}

.helpIcon:hover {
    cursor: pointer;
    color: #FF5C00;
    background: #fff;
    border: 2px solid #243D5A;
}

.helpIcon i {
    font-size: 17pt;
}

/* survey */
.helpForm {
    width: 0;
    height: 0;
    background: #fff;
    /* padding: 15px; */
    /* border: 2px dashed #000; */
    border-radius: 10px;
    text-align: left;

    position: absolute;
    right: 20px;
    bottom: 20px;

    transition: all .3s ease;
    overflow: hidden;
}

.helpForm h4 {
    float: left;
}

.helpForm .btn-close {
    float: right;
}
.required {
    color: red;
}