*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}

body
{
    background: linear-gradient(180deg, #bcebe0, #f6fbfe);
    font-family: Avenir, sans-serif;
    min-height: 100vh;
    min-width: 17.5rem;
    overflow-x: hidden;
    position: relative;
}

.login-icon
{
    color:black;
    font-size:30px;
    cursor:pointer;
}

.color 
{
    color:#099F96;
    font-weight:bold;
}

h1
{
    font-weight: bold;
    color:#0B3E53;
    font-size:50px; 
}

.gender h5 {
    color: #0B3E53;
    font-weight: bold;
    font-size: 24px;
}

/* Wrapper Buttons */
.gender .d-flex {
    flex-wrap: wrap;
    gap: 20px;
}

/* Each Gender Button */
.gender button {
    border: 5px solid white;
    background: none;
    cursor: pointer;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    width: 100%;
    margin: 10px;
}

/* Image Style */
.gender button img {
    width: 100%;
    height: auto;
    transform: translateY(-1px);
    transition: transform 0.4s ease;
    position: relative;
}

/* Paragraph Style */
.gender button p {
    font-weight: bold;
    font-size: 18px;
    background-color: white;
    margin: 0;
    padding: 10px 0;
    color: #0B3E53;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

/* Hover Effects */
.gender button:hover img {
    transform: translateY(-2px) scale(1.03);
}

.gender button:hover p i {
    transform: translateX(6px);
}

/* Optional shadow for depth */
.gender button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary
{
    background-color: #8fe1d7;
    border-color: #8fe1d7;
    padding: 5px 31px;
    font-size: 18px;
}

/* MEDIA QUERIES for Mobile */
@media (max-width: 576px) {
    .gender h5 {
        font-size: 20px;
    }

    .gender button {
        max-width: 150px;
        margin: 10px auto;
    }

    .gender button p {
        font-size: 16px;
    }

    h1
    {
        font-size:32px;
        margin-bottom:-30px;
    }

    .gender button img {
        transform: translateY(-5px);
    }

    .gender button:hover img {
        transform: translateY(-10px) scale(1.03);
    }

}

.paragraph p{
    font-size:14px;
}

.paragraph h6
{
    font-weight: bold;
}

.body-color
{
    background:#DAF1ED;
    margin-top:50px;
    padding:10px;
}

.body-color p
{
    font-size:16px;
    font-weight:bold;
}

.body-color .chat-icon
{
    color:#797979;
    font-size:19px;
    margin-right:10px;
}

.body-color h6{
    font-size:15px;
    line-height:25px;
}

.color-tex
{
    background:#BDE5DF;
}

.color-tex h5
{
    margin:0px;
    padding:20px;
    font-size:15px;
}

.text
{
    color:red;
}

.question-section h2
{
    font-weight: 600;
    color:#0B3E53;
    margin-bottom:30px;
    font-size:24px!important;
}

.question-section .number span
{
    color:#0B3E53;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.question-section .number span i{
    color:#0B3E53;
    font-size: 15px;
    font-weight: bolder;
    cursor: pointer;
}

.progress
{
    height:0.8rem!important;
}
.bg-success{
  background-color:#03CEA4!important;
}

.options .box
{
    
    position: relative;
    height:85px!important;
    background-color:white;
    display: flex;
    justify-content: space-between;
    border-radius:7px;
}

.options .box:hover
{
    box-shadow: 7px 5px 21px rgba(0, 0, 0, 0.6);
}

.options .box .image
{
    position: relative;
    left: 5px;
    height: 79px;
    bottom: 1px;
    z-index: 1;
}

.options .box .height
{
    position:absolute;
    right:0px;
    /* height:80px; */
}

.col-6
{
    width:40%;
}

.options .box .input
{
    padding-top: 26px;
    font-size: 18px;
    padding-left: 13px;
}

input[type="checkbox"]
{
    height: 17px;
    width: 20px 
    /* margin-top:10px; */
}

label
{
    color:#0B3E53;
    font-size:16px;
    font-weight: 600;

}

.btn-info
{
    padding: 9px 46px;
    color: white;
    font-size: 18px;
}

.btn-info:hover
{
    color:white;
}

@media (max-width: 991px)
{
  .col-6
  {
    width:70%;
  }
}

@media (max-width: 768px)
{
    .col-6
  {
    width:70%;
  }
}

@media (max-width: 576px) 
{
  .col-6
  {
    width:100%;
  }

  label{
    font-size:15px;
  }

    input[type="checkbox"]
    {
        height: 15px;
        width: 22px 
        /* margin-top:10px; */
    }
}





