/* ==== root variables === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

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

body {
    width: 100vw;
    height: 100vh;
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    /* Defa.menut font */
    line-height: 1.6;
}

.status-pending,
.status-completed,
.status-failed,
.status-unknown {
    font-size: calc(var(--sm-text) - 1px);
    font-family: var(--font-family);
    padding: .5em 1.1em;
    border-radius: 20px;
}

.status-completed {
    background: rgb(115, 243, 115);
}

.status-pending {
    background: rgb(249, 207, 127);
    /* Solid Orange */
}

.status-failed {
    background: rgb(245, 121, 121);
}

.status-unknown {
    background: var(--primary-color);
}

.website_wrapper {
    display: flex;
    flex-direction: column;
    /* Stack children vertically */
    min-height: 100vh;
    /* Make the container full viewport height */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;

}

.text-center {
    text-align: center;
    margin: 1em auto;
}

a {
    text-decoration: none;
    color: #000;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    /* Headings using Poppins */
}

tm {
    margin-bottom: 20px;
    font-size: 10px;
}

.row {
    display: flex;
    align-items: center;
}

.col {
    flex: 1;
}

img {
    width: 100%;
}

.container {
    max-width: 1250px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

#loading {
    display: none;
    /* Hidden by default */
    font-size: 16px;
    color: #007BFF;
    /* Change color as needed */
    margin-top: 10px;
    /* Spacing */
}

.message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.info {
    background-color: coral;
    color: #fff;
    border: 1px solid #f5c6cb;
}

.wrap {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.arrow {
    transition: transform 0.3s ease;
}

.arrow.rotated {
    transform: rotate(180deg);
}

.link {
    width: max-content;
    padding: .7em 1.2em;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.link:hover {
    background: transparent;
}

.link a {
    color: #fff;
    transition: var(--transition);
}

.link:hover a {
    color: #000;
}

#message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

:root,
[data-bs-theme=light] {
    --bs-body-font-family: "DM Sans", sans-serif;
    --bs-heading-font-family: 'SuisseIntl SemiBold';
    --bs-body-font-size: clamp(13px, 1vw, 1.1rem);
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-bg: #FFFFFF;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-body-color: #6B6B6B;
    --bs-body-color-rgb: 107, 107, 107;
    --bs-secondary-color: #C6C6C6;
    --bs-secondary-color-rgb: 198, 198, 198;
    --bs-heading-color: #012A2B;
    --bs-primary: #D9FF43;
    --bs-dark: #012A2B;
    --bs-light: #E4EEEF;
    --bs-secondary: #023436;
    --bs-primary-rgb: 217, 255, 67;
    --bs-dark-rgb: 1, 42, 43;
    --bs-light-rgb: 228, 238, 239;
    --bs-secondary-rgb: 2, 52, 54;
    --bs-border-color: #E4EEEF;
    --bs-border-color-translucent: rgba(228, 238, 239, 1);
    --bs-border-radius: 10px;
    --bs-border-radius-sm: 5px;
    --bs-border-radius-lg: 20px;
    --bs-transition: 300ms ease;

    --primary-color: var(--bs-heading-color);
    --secondary-color: #000000;
    --accent-color: #F0F0F0;

    /* font-sizes */
    --header: clamp(1.5em, 2.2rem, 2.5vw);
    --header-sm: clamp(1.5em, 2rem, 2.2vw);
    --text-size: clamp(1em, 1.5em, 2vw);
    --text-sm: clamp(.9em, 1rem, 1.5vw);
    --sm-text: clamp(.6em, .8rem, 1vw);

    /* transition */
    --transition: .5s ease-in-out;

    /* box-shadow */
    --box-shadow1: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --box-shadow2: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;


    /* filter */
    --filter-1: brightness(0) saturate(100%) invert(42%) sepia(85%) saturate(3251%) hue-rotate(184deg) brightness(95%) contrast(96%);

    /* font family */
    --font-family: 'Poppins', sans-serif;
}


body {
    background-color: #f9f9f9;
}

body.login {
    background-color: #f9f9f9;
}

.auth-form-light {
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 100%;
}

.auth-form-light form .auth-form-btn::before {
    background-color: darkblue;
}

.nav .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #c9c9cc;
    padding: 30px 0;
    background-color: #f9f9f9;
}

.nav .logo img {
    max-width: 100px;
}

.welcome_text {
    padding: 0 20px;
}

.welcome_text span {
    font-size: clamp(13px, 1vw, 1.1rem);
    text-transform: uppercase;
}

.welcome_text h2 {
    font-size: clamp(12px, .8vw, 1rem);
    font-weight: 400;
}


/* Form Container Styles */
.profile_display {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form_group {
    margin-bottom: 1.5rem;
}

.form_group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form_group input,
.form_group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form_group input:focus,
.form_group select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

.form_group input[type="submit"],
button[type="submit"] {
    background-color: #4a90e2;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.form_group input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: #357abd;
}

.form-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Grid Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.col-12 {
    flex: 0 0 100%;
    padding: 0.5rem;
}

.col-md-6 {
    flex: 0 0 100%;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
    }
}

/* Typography */
.heading_text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.heading_description {
    color: #666;
    margin-bottom: 2rem;
}