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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f6f9fc, #e2e8f0);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

h1, h2, h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 3em;
    color: #007bff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Home Page Styles */
.home-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.home-container .logo {
    width: 150px;
    margin: 20px auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home-container h1 {
    font-size: 2.8em;
    margin: 20px 0;
    color: #007bff;
}

.home-container .description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.button-group {
    margin-top: 30px;
}

.button-group a {
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-group a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Form & Input Styles */
form {
    background-color: #fff;
    padding: 30px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

input, select, button {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f7f7f7;
    font-size: 1em;
    color: #555;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

button.btn-primary {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

button.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button.btn-danger:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Dashboard */
#dashboard-section {
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

#dashboard-section p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #555;
}

#dashboard-section span {
    font-weight: bold;
    color: #007bff;
}

/* Mobile First */
@media (max-width: 768px) {
    .home-container {
        padding: 20px;
    }

    .button-group a {
        padding: 12px 20px;
        font-size: 1em;
    }

    form {
        padding: 20px;
    }

    input, select, button {
        padding: 12px;
    }
}
/* Reset some basic styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  .home-container {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    padding: 20px;
  }
  
  .header {
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .logo {
    width: 100px;
    height: auto;
    margin-right: 20px; 
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .button-group {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  /* Marketing Section */
  .marketing-section {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 40px;
    border-top: 1px solid #ddd;
  }
  
  .refund-policy {
    font-size: 16px;
    font-weight: bold;
    color: #28a745; 
  }
  
  .terms-and-conditions {
    font-size: 12px;
    color: #007BFF; 
  }
  
  .terms-and-conditions a {
    text-decoration: none;
    color: #007BFF;
  }
  
  .terms-and-conditions a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .home-container {
      padding: 10px;
    }
  
    .header {
      flex-direction: column; 
      text-align: center;
    }
  
    .logo {
      margin-bottom: 10px; 
    }
  
    .button-group {
      flex-direction: column; 
      width: 100%;
    }
  
    .btn-primary {
      width: 100%; 
      margin-bottom: 10px;
    }
  
    .marketing-section {
      padding: 15px;
      font-size: 13px;
    }
  
    .refund-policy {
      font-size: 14px; 
    }
  
    .terms-and-conditions {
      font-size: 11px; 
    }
  }
/* Button styling */
.btn-primary {
  background-color: #007BFF; /* Blue background */
  color: rgb(2, 38, 131);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Other general styling for the page */
.home-container {
  text-align: center;
  padding: 40px 20px;
}

header {
  margin-bottom: 20px;
}

.logo {
  width: 100px;
  height: auto;
}

.description {
  font-size: 18px;
  margin-bottom: 30px;
}
button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(38, 140, 255, 0.5);
}

.withdrawable-amount {
    color: blue !important;  /* Make the text blue */
    font-weight: bold !important;  /* Bold the text */
    font-size: 18px !important;  /* Adjust the font size */
    margin-top: 10px !important;  /* Add some spacing at the top */
}
