@font-face {
  font-family: 'transform';
  src: url(transform.ttf);
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2d2d2d;
    color: #f8f9fa;
  }
  
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;  /* Align items vertically */
    align-items: center;     /* Center items horizontally */
    justify-content: flex-start; /* Align at the top */
    padding-top: 20px;       /* Add some padding to the top */
    height: 100vh;           /* Full viewport height */
  }
  
header {
  font-family: "transform", 'Arial', sans-serif;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    background-color: #2d2d2d; /* Original background color */
    padding: 15px; /* Adjust padding as needed */
}

header h1 {
    font-size: 22px; /* Adjust size as needed */
    margin: 0; /* Remove default margin */
    color: white; /* Ensure it remains visible */
}
  

  form div {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"], input[type="password"], input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.error {
    color: red;
    margin-bottom: 10px;
}

.success {
    color: green;
    margin-bottom: 10px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Login CSS */

.form-grouplogin{
  width: 300px;            /* Set width */
  height: 30px;            /* Set height */
  padding: 5px;            /* Set padding */
  font-size: 14px;         /* Set font size */
  margin-top: 20px;        /* Add margin to separate inputs */
}

.btnlogin{
  width: 300px;            /* Set width */
  height: 30px;            /* Set height */
  padding: 5px;            /* Set padding */
  font-size: 14px;         /* Set font size */
  margin-top: 30px;        /* Add margin to separate inputs */ 
}
.btn-tour {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #2d2d2d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-tour:hover {
  background-color: #2d2d2d;
}
