body {
    background-color: #0a0a23;
    font-family: "Noto Sans", sans-serif;
    color: #fc3;
    margin: 0;
}

/*
** LARGE SCREENS **
*/
@media screen and (min-width: 651px) {
    .mobile-nav {
        display: none;
    }


    .field {
        max-width: 50%;
    }

    .nav {
        font-size: 1.5em;
        border: 1px solid #ccc;
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
        background-color: #3a3a53;
    }

    .nav li {
        display: inline;

    }

    .nav a {
        display: inline-block;
        padding: 0.5em;
        text-decoration: none;
    }

    li a:hover {
        color: #333;
        background-color: #fc3;
    }

    .active {
        color: #333;
        background-color: #ff9933;
    }

    .inactive {
        color: #111;
    }

}


/*
** SMALL SCREENS **
*/
@media screen and (max-width: 650px) {

    .mobile-nav {
        background: #F1F1F1;
        position: fixed;
        bottom: 0;
        height: 65px;
        width: 100%;
        display: flex;
        justify-content: space-around;
        z-index: 999;
    }

    .bloc-icon {
        color: #0a0a13;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .inactive {
        color: #aaa;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bloc-icon:hover {
        color: #ff9933;
    }

    .active-page {
        border-top: 7px solid #ff9933;
    }

    /* HIDE THE NAV ON SMALL SCREENS */
    .nav {
        display: none;
    }

    .nav li {
        display: none;
    }

    .nav a {
        display: none;
    }
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

/*
** Modern, accessible buttons
*/
:root {
    --btn-bg: #ff9933;
    --btn-bg-hover: #ffaa4d;
    --btn-bg-active: #e07f1b;
    --btn-fg: #111;
    --btn-radius: 8px;
    --btn-border: transparent;
    --btn-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    --btn-shadow-focus: 0 0 0 3px rgba(255, 153, 51, 0.35);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--btn-radius);
    border: 1px solid var(--btn-border);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: var(--btn-shadow);
    white-space: nowrap;
    /* Vendor prefixes must come before standard property */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color .15s ease, box-shadow .15s ease, transform .02s ease;
    transition: background-color .15s ease, box-shadow .15s ease, transform .02s ease;
}

.btn:hover {
    background: var(--btn-bg-hover);
}

.btn:active {
    background: var(--btn-bg-active);
    transform: translateY(1px);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--btn-shadow-focus);
}

.btn-primary {
    /* uses defaults above */
}

.btn-secondary {
    --btn-bg: #3a3a53;
    --btn-bg-hover: #4a4a6a;
    --btn-bg-active: #2e2e44;
    --btn-fg: #fff;
}

.btn-danger {
    --btn-bg: #d9534f;
    --btn-bg-hover: #e0615d;
    --btn-bg-active: #bf3f3b;
    --btn-fg: #fff;
}

.btn[disabled], .btn.disabled {
    opacity: .6;
    cursor: not-allowed;
    filter: grayscale(20%);
}

.btn-container {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* legacy alias */
.btn-submit { /* map old class to new system */
    composes: btn btn-primary; /* if unsupported, still styled by below fallback */
}

/* Fallback mapping when CSS Modules' composes is not available */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--btn-radius);
    border: 1px solid var(--btn-border);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: var(--btn-shadow);
    white-space: nowrap;
}

/* Password reveal toggle sizing + defaults (prevent oversized overlay) */
.password-input-container {
    position: relative;
    width: 100%;
    display: block;
}

.password-input-container input.field {
    padding-right: 48px;
    box-sizing: border-box;
}

.password-input-container .password-toggle-btn {
    /* Position inside the input field */
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);

    /* Reset button styles */
    background: none;
    border: none;
    margin: 0;

    /* Size and appearance */
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 4px;

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Interaction */
    cursor: pointer;
    z-index: 2;
}

.password-input-container .password-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.password-input-container .password-toggle-btn .eye-icon {
    font-size: 18px;
    line-height: 1;
}

.field {
    max-width: 75vw;
}

/*
** END OF SMALL SCREEN DECLARATIONS
*/

.pencil {
    float: right;
    margin-right: 6px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    color: #ff9933;
}

.tooltip .tooltiptext {
    /*visibility: hidden;*/
    width: 120px;
    background-color: #ff9933;
    color: #333;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    right: 50%;
    top: 51%;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.arrow-up {
    /*visibility: hidden;*/
    position: absolute;
    right: 52%;
    top: 50%;
    z-index: 1;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #ff9933;
}

.tooltip:hover .arrow-up {
    visibility: visible;
}

.logo img {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.word-cloud {
    display: block;
    width: 85%;
    margin-top: 350px;
    margin-left: auto;
    margin-right: auto;
}

.word-cloud image {
    margin-top: 175px;
    width: 90%;
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.word-cloud-hide {
    display: none;
}

label {
    font-size: 2rem;
    color: #eee;
    /*width: 100vw;*/
    /*margin: 0 auto;*/

}

label:first-child {
    margin-top: 50px;
}

.content {
    color: #eee;
    padding: 0 1rem 1rem;
}

.content:last-child {
    margin-bottom: 0;
}

.content form {
    margin: 1em 0;
    display: flex;
    flex-direction: column;
}

.content label {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.content input, .content textarea {
    margin-bottom: 1em;
}

.content textarea {
    min-height: 12em;
    resize: vertical;
}

input.danger {
    color: #cc2f2e;
}

.field {
    background-color: #ccc;
    color: #333;
    font-family: "Ubuntu", sans-serif;
    font-size: 1.2rem;
    border-style: solid;
    border-width: 3px;
    border-color: #ff9933;
    outline: none;
    /* Vendor prefixes must come before standard property */
    -webkit-transition: height 1s;
    transition: height 1s;
}

.button {
    display: block;
    background-color: #ff9933;
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #eeeeee;
    text-align: left;
    font-size: 1.4em;
    padding: 10px;
    width: 220px;
    /* Vendor prefixes before standard property (already correct order) */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0 auto;
}

.fa-button {
    width: 4em;
    height: 4em;
    background-color: #ff9933;
    color: #eee;
    border: 5pt solid #eee !important;
    border-radius: 50%;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 1.25em 0;
}

/*
** LOGIN FORM **
*/


.loginWrapper {
    display: block;
    position: relative;
    width: 350px;
    text-align: center;
    margin: auto;
    right: 0;
    left: 0;
    margin-top: 60px;
    margin-bottom: 60px;
    z-index: 1000;
    transition: box-shadow 1s;
}

.logginFormFooter {
    text-align: center;
    color: #777;
    width: 100%;
    font-size: 12px;
    position: fixed;
    bottom: 10px;
}

.logginFormFooter a {
    color: #777;
    font-weight: 600;
}

.logginFormFooter a:hover {
    color: #AAA;
}

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

.tabs {
    display: table;
    table-layout: fixed;
    width: 100%;
    transform: translateY(5px);
}

.tabs > li {
    transition-duration: .25s;
    display: table-cell;
    list-style: none;
    text-align: center;
    padding: 20px 20px 25px 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: #666;
    background-color: transparent;
}

.tabs > li:before {
    z-index: -1;
    position: absolute;
    content: "";
    width: 100%;
    height: 120%;
    color: #FFF;
    top: 0;
    left: 0;
    background-color: #DDD;
    transform: translateY(100%);
    transition-duration: .25s;
    border-radius: 8px 8px 0 0;
}

.tabs > li:hover:before {
    transform: translateY(70%);
}

.tabs > li.active {
    color: #FFF;
}

.tabs > li.active:before {
    transition-duration: .5s;
    background-color: #444;
    transform: translateY(0);
}

.tab__content {
    position: relative;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    background-color: #444;
    box-shadow: 0px 12px 34px -8px rgba(0, 0, 0, 0.28);
}

.tab__content > li {
    width: 100%;
    position: absolute;
    border-radius: 5px;
    color: #FFF;
    top: 0;
    left: 0;
    background-color: #444;
    display: none;
    list-style: none;
}

.tab__content > li .content__wrapper {
    text-align: center;
    border-radius: 5px;
    padding-top: 24px;
    background-color: #444;
}


form input {
    border: none;
    padding: 12px;
    background: #EEE;
    font-size: 16px;
    margin: 12px 0px;
    width: 300px;
    font-weight: 100;
    outline: none;
}

form input:first-child {
    margin-top: 8px;
}

form input:last-child {
    margin-top: 16px;
    margin-bottom: 0px;
}

form input:focus {
    background-color: #FFF;
}

form input:hover {
    background-color: #FFF;
}

form input::placeholder {
    color: blue;
}

form [type="submit"]:focus,
form [type="submit"]:hover {
    background: #009CEF;
}

form [type="submit"] {
    background: #f5a04b;
    color: #04041d;
    border-color: #04041d;
    padding: 24px;
    width: 20%;
    cursor: pointer;
}

::-webkit-input-placeholder {
    color: #DDD;
}

:-moz-placeholder {
    color: #DDD;
}

::-moz-placeholder {
    color: #DDD;
}

:-ms-input-placeholder {
    color: #DDD;
}

.text-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.india {
    margin: 0 auto;
    width: 100%;
    border-radius: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.3;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.about {
    color: #fc3;
    position: absolute;
    margin-top: auto;
    top: 120px;
    left: 0;
    right: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.2em;
    z-index: 2;
}

.about a:link {
    color: #ff9933;
    font-weight: bold;
}


select {
    font-size: 1.5em;
}

/* custom select box code */
/* The container must be positioned relative: */
.custom-select {
    position: relative;
    margin: 0 auto;
    font-size: 1.5em;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: #ff9933;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}


/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #ff9933;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/* STYLES FOR THE EMAIL FORM */


.center, .start-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.start-btn a {
    font-size: 22px;
    background: white;
    color: #02242b;
    padding: 15px 18px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;

}

.modal-box {
    top: 40%;
    opacity: 0;
    visibility: hidden;
    background: white;
    height: auto;
    width: 300px;
    padding: 38px 30px;
    border-radius: 5px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, .2);
}

.start-btn.show-modal {
    opacity: 0;
    visibility: hidden;
}

.modal-box.show-modal {
    top: 50%;
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

.modal-box .fa-times {
    position: absolute;
    top: 0;
    right: 0;
    background: #c90;
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin: 10px;
    padding-left: 15px;
    color: white;
    font-size: 24px;
    border-radius: 100%;

    cursor: pointer;
}

.fa-times:hover {
    font-size: 22px;
}

.modal-box .icon1 {
    font-size: 30px;
    background: #c90;
    height: 50px;
    width: 50px;
    color: #eee;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    margin-bottom: 10px;
}

.modal-box header {
    font-size: 28px;
    color: #c90;
    font-family: sans-serif;
    margin-bottom: 10px;
}

.modal-box p {
    line-height: 20px;
    color: grey;
}

form input, form button {
    height: 50px;
    width: 100%;
    border-radius: 3px;
}

form .icon2 {
    position: absolute;
    height: 50px;
    width: 50px;
    margin-top: 15px;
    padding-left: 15px;
    background: #c90;
    color: white;
    line-height: 50px;
    font-size: 24px;
    border-radius: 5px 0 0 5px;
}

form input {
    margin-top: 15px;
    padding: 0 65px;
    font-size: 18px;
    outline: none;
    border: 2px solid #c90;

}

input::placeholder {
    color: #8c8c8c;
}

form button {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #c90;
    color: white;
    font-size: 25px;
    border: 3px solid #c90;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    transition: .3s;
}

form button:hover {
    background: #1ed2fa;
    border: 1px solid #05cdfa;
}

#cloud {
    position: relative;
    width: 80%;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

#cloud svg {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
