* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #1c2029;
color: white !important;
                    min-height: 100vh !important;
                    display: flex !important;
                    justify-content: center !important;
                    align-items: center !important;
                    padding: 20px 0 !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hidex{
                    height: 0 !important;
                    width: 0 !important;
                    opacity: 0 !important;
                    overflow: hidden !important;
}

header {
  width: 100%;
}

.top-icons {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.icon-right {
  display: flex;
  gap: 10px;
}

.circle-icon {
  width: 30px;
  height: 30px;
  background-color: #ffc107;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1c2029;
  cursor: pointer;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  width: 120px;
  height: auto;
}

h1 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 30px;
  text-align: center;
}

.login-form,
.register-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 12px 15px;
  background-color: #2a2e39 !important;
  border: none !important;
border-radius: 4px !important;
outline: none !important;
  color: white !important;
  font-size: 14px !important;
}

input::placeholder {
  color: #6c757d !important;
}

input[readonly] {
  background-color: #232730 !important;
  color: #6c757d !important;
}

.password-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
}

.forgot-password {
  text-align: right;
  margin-top: 8px;
}

.forgot-password a {
  color: #ffc107;
  text-decoration: none;
  font-size: 14px;
}

.login-button {
  width: 100%;
  padding: 12px;
  background-color: #ffc107;
  color: black;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

.register {
  text-align: center;
  font-size: 14px;
}

.register span {
  color: white;
}

.register a {
  color: #ffc107;
  text-decoration: none;
  margin-left: 5px;
}

/* File input styling */
.file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-label {
  display: inline-block;
  padding: 10px 15px;
  background-color: #2a2e39;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.file-name {
  color: #6c757d;
  font-size: 14px;
}

/* Recaptcha placeholder */
.recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.recaptcha-placeholder {
  width: 100%;
  height: 78px;
  border-radius: 4px;
  background-color: #2a2e39;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recaptcha-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #3a3f4b;
  border-radius: 3px;
  padding: 10px;
  color: #6c757d;
}
