
:root {
	--bg-color: #f0f3f7;
	--card-bg: #ffffff;
	--text-color: #ffffff;
	--icon-color: #0d6efd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
		
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #5a5a5a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/**** Text ****/

h1, h2 {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

/**** Input ****/

textarea  {
        width: 100%;
        padding: 0.75rem;
        border: 2px solid #3a3a3a;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
        background-color: #1f1f1f;
        color: #e0e0e0;
    }
	
textarea:focus {
        outline: none;
        border-color: #6496c8;
    }

textarea:hover {
    background: #262626;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(200, 200, 200, 0.3);
    }

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #1f1f1f;
    color: #e0e0e0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: #6496c8;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover {
    background: #262626;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(200, 200, 200, 0.3);
}

/**** Button ****/

.btn {
    width: 100%;
    padding: 0.75rem;
    background: #6496c8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: #5582b0;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(100, 150, 200, 0.3);
}

/**** Forms ****/
	
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.card {
    background: #2a2a2a;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(100, 150, 200, 0.1);
    color: #e0e0e0;
}


.form-group {
    margin-bottom: 1.5rem;
}

/*** Rest ***/

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alert-success {
    background-color: #1e4d2b;
    color: #a3d9a5;
    border: 1px solid #2d6a3e;
}

.alert-error {
    background-color: #4d1e1e;
    color: #f1a7a7;
    border: 1px solid #6a2d2d;
}

/*** Link ***/

.link {
    text-align: center;
    margin-top: 1rem;
    color: white;
}

.link a {
    color: #6496c8;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
    color: #5582b0;
}

.requirements {
    background-color: #5f5f5f;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid #3a3a3a;
}

.requirements ul {
    margin-left: 1.5rem;
    color: #b0b0b0;
}

.requirements li {
    margin: 0.3rem 0;
}

/*** Payment Page ***/
.payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 20px;
    background: linear-gradient(135deg, #232526 0%, #818385 100%);
}

.payment-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
}

.payment-header {
    background: linear-gradient(135deg, #1e3c72 0%, #3a67ad 100%);
    color: white;
    text-align: center;
    padding: 40px 30px;
}

.payment-header .form-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.payment-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.payment-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.payment-body {
    padding: 30px;
    text-align: center;
}

.payment-message {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.payment-icon {
    display: block;
    text-align: center;
    font-size: 64px;    /* optional: make icon bigger */
    color: #1e3c72;  /* optional: match your theme */
}

.price-text {
    color: #189f55;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* use for terms & conditons and contact? */
.cont-term {
    max-width: 900px;
    margin: auto;
    color: #e0e0e0;
}

/*** Token related ***/

.token-display {
    font-size: 15px;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-color);
}

body.dark-mode .token-display {
    background: rgba(255, 255, 255, 0.08);
}

.token-display.low-tokens {
    background: rgba(220, 53, 69, 0.15);
    /* Bootstrap danger red */
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

body.dark-mode .token-display.low-tokens {
    background: rgba(220, 53, 69, 0.25);
}

/*** Navigation ***/


/* Right side (tokens + toggle) 
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}*/

.navbar {
  display: flex;
  justify-content: space-between; /* left group | right group */
  align-items: center;

          background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(100, 150, 200, 0.1);
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 20px;
  font-size: 15px;
}

.navbar a:hover {
  color: #60a5fa; /* light blue */
}

/* Remove extra space on last links 
.navbar-left a:last-child,*/

/* Left menu */
.navbar-left {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}


.navbar-right {
  display: flex;
  align-items: center;   /* vertical alignment */
  gap: 20px;             /* space between items */
}

.mode-label {
	font-size: 16px;
	font-weight: 400; /* space between items */
	margin-left: 5px;
	color: ffffff;
}

/*
100  → very thin
300  → light
400  → normal (default)
500  → medium
600  → semi-bold
700  → bold
900  → extra-bold
*/

.toggle-container {
  display: flex;
  align-items: center;
  gap: 6px;   /* space between checkbox and text */
}


/* see in pay_thank_you.html */
.thank-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;          /* Centers the blocks horizontally */
    justify-content: center;    /* Centers content vertically if container has height */
    text-align: center;         /* Centers the text inside the elements */
    gap: 8px;                   /* Controlled spacing between the lines */
    width: 100%;                /* Ensures it takes up the full width */
    margin-top: 50px;           /* Optional: adds some breathing room from the top */
}


