@font-face {
  font-family: "Viga";
  src: url('../../public/fonts/Viga-Regular.ttf') format('truetype');
}

/* Custom Styles for Login Form */
/* body {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  font-family: "Viga", sans-serif;
  font-weight: normal;
  font-style: normal;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
} */

body {
  background-color: #f8f9fa;
  /* font-family: Arial, sans-serif; */
  font-family: "Viga", sans-serif;
}

/* .login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-image: url('templates/images/pt_gain/cover_get.jpg');
} */

body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  background: no-repeat center/cover url("/templates/images/pt_gain/cover_get.jpg");

}

.login-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 400px;
}

.login-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.form-label {
  font-weight: 600;
  color: #555555;
}

.alert-danger {
  font-size: 0.9rem;
  margin-top: 10px;
}

.form-control {
  border-radius: 5px;
}