body {
  font-family: Arial, sans-serif;
  margin: 0px;
  background: #111827;
}

form {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

input, button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

button {
  background: #0073e6;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #005bb5;
}

h2, h3 {
  text-align: center;
}

/* Register Page */

#mainRes{
    display: flex;
    width: 100%;
    height: 100vh;
     background-image: url('/Images/background.webp'); 
     background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#mainRes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Transparent black */
    z-index: 1;
}


#logoRes, #formRes {
    width: 50%;
    height: 100%;
    display: flex;  
    justify-content: center;    
    align-items: center; 
    flex-direction: column;
    z-index: 3;
}

#logoRes img{
  width: 70%;
}

#logoRes h4{
  color: white;
  margin-top: 50px;
  font-size:30px;
  letter-spacing: 10px;
  word-spacing: 15px;
}


#formRes form{
    color:#fff;
    background: linear-gradient(0deg,#11182700 0%, #1f293700 100%);
    padding: 80px;
}

form input {
  background-color: #1f293700;
  border: 1px solid #fff;
  border-radius: 10px;;
  padding:20px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

form h2{
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 15px;
}

form button{
  margin-top: 50px;
  font-size: 18px;
  border-radius: 10px;
  padding: 20px;
  letter-spacing: 5px;
  margin-bottom: 50px;
}

form a{
  font-size: 18px;
  color:#fff;
}

/* Full screen overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* transparent black */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Popup box */
.popup {
  background: #111827;
  padding: 50px 100px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  font-size: 16px;
  text-align: center;
  max-width: 400px;
  position: relative;
  color:white;
}



.error-popup {
  border-left: 6px solid #dc3545;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
}

.success-icon {
    width: 100px;
    height: 100px;
}

.success-popup h3{
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 0;
}

.success-popup p{
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0;
}

.copy-btn {
  margin-top: 15px;
  padding: 8px 16px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.copy-btn:hover {
  background: #218838;
}

#copyMsg {
  font-size: 14px;
  color: #28a745;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Dashboard */

.dashboard{
    color: white;
    margin: auto;
    max-width: 1200px;
    padding: 100px;
}

table {
    color: white;
    width: 100%;
    border: none;
    border-radius: 10px;
}

table th {
    background-color: white;
    color: black;
    border: none;
    height: 50px;
}

table td {
    background-color: #1f2937;
    color: white;
    border: none;
    height: 50px;
}

tr:nth-child(odd) td {
  background-color: #1f2937;
  color: white;
}

tr:nth-child(even) td {
  background-color: #1c232e;
  color: white;
}

.dashboard .bgcto_logo {
    height: 70px;
    padding-bottom: 50px;
}

.dashboard h2{
    text-align: left;
    text-transform: capitalize;
    font-size: 30px;
}

.dashboard h3{
    text-align: left;
    font-size: 20px;
    padding-top: 50px;
}

.flex{
    display: flex;
    gap: 10px;
}


.colOne{
    width: 50%;
}


.colTwo{
    width: 50%;
    margin: auto;
    text-align: right;
}

.colTwo a{
    color: white;
    text-align: right;
    margin: auto;
}

table tr td form {
   background: #ffffff00;
}

table tr td form button{
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    padding: 10px;
}

table tr td form select{
    width: 100%;
    height: 35px;
    border-radius: 3px;
}



























