*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/*--- common css ---*/

h1 {
    font-size: 60px;
}

h2 {
    font-size: 55px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sans-serif;
    margin-bottom: 0;
    line-height: 1.2;
}


p {
    font-size: 18px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0;
}

span {
    display: inline-block;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

image,
video {
    width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
}

.desktop {
    display: none !important;
}

.mobile {
    display: block !important;
}

body {
    font-family: "Raleway", sans-serif !important;
}

/*--- header css start ---*/


.background-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.stars {
    background: #001c48 url("../images/stars.png") repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 0;
}

.twinkling {
    width: 10000px;
    height: 100%;
    background: transparent url("../images/twinkling-blue.png") repeat;
    background-size: 1000px 1000px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    -moz-animation: move-background 70s linear infinite;
    -ms-animation: move-background 70s linear infinite;
    -o-animation: move-background 70s linear infinite;
    -webkit-animation: move-background 70s linear infinite;
    animation: move-background 70s linear infinite;
}

@keyframes move-background {
    0% {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    100% {
        -webkit-transform: translate3d(1000px, 0px, 0px);
    }
}

.clouds {
    width: 10000px;
    height: 100%;
    background: transparent url("../images/clouds_repeat-white.png") repeat;
    background-size: 1000px 1000px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
    -moz-animation: move-background 150s linear infinite;
    -ms-animation: move-background 150s linear infinite;
    -o-animation: move-background 150s linear infinite;
    -webkit-animation: move-background 150s linear infinite;
    animation: move-background 150s linear infinite;
}

.dream_cloud {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    overflow: hidden;
}

.dream_cloud::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgb(255 255 255 / 76%) 40%, transparent 100%);
    clip-path: polygon(100% -380%, 100% 100%, 40% 100%);
    z-index: 1;
    pointer-events: none;
}


.dream_cloud .section_box {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.left_section {
    width: 45%;
    padding-left: 70px;
}

.right_section {
    width: 55%;
}

.left_section .slider_box {
    width: 100%;
    max-width: 480px;
}

.left_section .title_box {
    margin-bottom: 30px;
}

.left_section .title_box h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.left_section .title_box p {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    text-indent: 40px;
}

.slider_box .item {
    display: flex;
    align-items: start;
    gap: 20px;
    background-color: #001c48;
    border-radius: 15px;
    padding: 15px 60px 15px 15px;
    width: fit-content;
}

.slider_box .item .img_box img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
}

.slider_box .text_slider p {
    color: #fff;
    width: 100%;
    max-width: 250px;
    font-weight: 400;
}

.right_section .fill_form_box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
}

.fill_form_box .logo_img {
    margin-bottom: 30px;
}

.fill_form_box .logo_img img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

.fill_form_box .email_box input {
    width: 100%;
    background-color: #001c48;
    border: none;
    box-shadow: none;
    padding: 8px 20px;
    border-radius: 30px;
    text-align: center;
    color: #ffff;
    outline: none;
    font-size: 16px;
}

.fill_form_box .btn_container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.btn_container .btn_common {
    background-color: #3ba1da;
    color: #fff;
    width: calc(50% - 5px);
    padding: 12px 20px !important;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    border-radius: 10px;
}

.btn_container .btn_common i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.devider_box {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.devider_box p {
  margin: 0 10px;
  color: #000;
  font-weight: 500;
  white-space: nowrap;
}

.devider_box::before,
.devider_box::after {
  content: "";
  flex: 1;
  border-bottom: 1px dashed #000;
  opacity: 0.6;
}

.devices_list ul li {
    margin-bottom: 10px;
}

.devices_list ul li a {
    background-color: #f3f3f3;
    width: 100%;
    padding: 10px 20px 10px 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    color: #676a6e;
    position: relative;
}

.devices_list ul li a img {
    width: 100%;
    max-width: 20px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.terms_services ul {
    display: flex;
    align-items: center;
    background-color: #f3f3f3;
    border-radius: 30px;
    padding: 8px 20px;
    justify-content: center;
    margin-top: 30px;
}

.terms_services ul li {
    padding: 0 20px;
}

.terms_services ul li:nth-child(2) {
    border-left: 1px solid #676a6e;
    border-right: 1px solid #676a6e;
}

.terms_services ul li a {
    font-size: 12px;
    color: #676a6e;
}

.slider_box .owl-carousel .owl-nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    right: 30px;
}

.slider_box .owl-carousel .owl-nav .owl-next {
    color: #fff;
}

.slider_box .owl-carousel .owl-nav .owl-next span {
    font-size: 50px;
}

.slider_box .owl-carousel .owl-nav .owl-prev {
    opacity: 0;
    visibility: hidden;
}

.field-icon {
  position: absolute;
  top: 30%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #ffffff;
}

.error {
    color: #f81313;
}

.fill_form_box .email_box input.input-filled {
    background-color: #003066 !important;
}

.fill_form_box .email_box input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #003066 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-color: #003066 !important;
    color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

#avatar_list img {
    width: 100px;
    height: 100px;
    margin: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 50%;
  }

#avatar_list img.selected {
    border-color: #007bff;
}

#register_box input[type="text"],
#register_box input[type="password"],
#register_box select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 999px;
    background-color: #002d5f;
    color: white;
    margin-bottom: 12px;
    font-size: 14px;
    outline: none;
    appearance: none;
}

#register_box select {
    background-color: #002d5f;
    color: white;
}

#register_box .error {
    color: #f81313;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 8px;
    display: block;
}

#register_box #choose_avatar {
    border-radius: 30px;
    padding: 8px 20px;
    background: #002d5f;
    color: white;
    border: none;
    font-size: 14px;
    margin-top: 6px;
}

#avatar_preview img {
    width: 100px;
    height: 100px;
    object-fit: cover; /* ensures it crops to fit the square */
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

#register_box .field-icon {
    position: absolute;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    color: #ccc;
    cursor: pointer;
}

#register_box .position-relative {
    position: relative;
}

#register_box .dob-group {
    display: flex;
    gap: 10px;
}

#register_box .current-location-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 14px;
    color: #002e5c;
    width: 100%;
}

#register_box .current-location-wrap label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

#register_box #use_current_location {
    accent-color: #002e5c;
    cursor: pointer;
    width: auto;
}

.custom-modal {
    border-radius: 20px;
    background-color: #f9fbfd;
    box-shadow: 0 8px 20px rgba(0, 46, 92, 0.2);
    border: none;
}

.custom-modal-header {
    background-color: #002e5c;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 16px 24px;
}

.custom-modal-body {
    padding: 20px 24px;
}

.custom-modal .modal-title {
    font-weight: bold;
    font-size: 18px;
}

.custom-modal .close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    line-height: 1;
}

.custom-modal .close:hover {
    color: #ffc107;
    opacity: 1;
}


#avatar_list .avatar-item {
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 12px;
    border: 2px solid transparent;
}

#avatar_list .avatar-item:hover {
    transform: scale(1.05);
    border-color: #002e5c;
}

.label_text {
    display: inline-block;
    color: #002d5f;
    font-size: 16px;
}

.forgot-password-link {
    position: absolute;
    top: 80%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: #002d5f;
    text-decoration: none;
    z-index: 10;
}

.skeleton-loader .skeleton-input,
.skeleton-loader .skeleton-button {
    height: 45px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border-radius: 5px;
}

.skeleton-loader .skeleton-button {
    width: 40%;
}

@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}



/* =========== responsive css start ============ */


@media (max-width:1199px) {
    .dream_cloud {
        padding: 0 20px;
    }
    .left_section {
        padding-left: 0px;
    }
    .left_section .title_box h1 {
        font-size: 30px;
    }

    .left_section .title_box p {
        font-size: 24px;
        text-indent: 10px;
    }
    .right_section .fill_form_box {
        max-width: 450px;
    }
    .slider_box .item .img_box img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width:1024px) {

    .dream_cloud {
        min-height: 100%;
    }

    .dream_cloud .section_box {
        flex-wrap: wrap;
        padding: 20px 20px;
    }

    .left_section,
    .right_section {
        width: 100%;
    }
    .left_section .title_box {
        text-align: center;
    }

    .left_section .slider_box {
        margin: 0 auto;
    }

    .dream_cloud::after {
        display: none;
    }

    .slider_box .owl-carousel .owl-nav {
        right: 50px;
    }
    .slider_box .text_slider p {
        font-size: 14px;
    }

}

@media (max-width:575px) {

    .left_section .title_box h1 {
        font-size: 26px;
    }

    .left_section .title_box p {
        font-size: 20px;
    }

    .fill_form_box .logo_img img {
        max-width: 300px;
    }

    .fill_form_box .logo_img {
        margin-bottom: 10px;
    }

    .slider_box .owl-carousel .owl-nav {
        right: 30px;
    }

}