@font-face {
  font-family: "Rajdhani";
  src: url("./fonts/Rajdhani-Regular.ttf");
}

@font-face {
  font-family: "Rajdhani";
  src: url("./fonts/Rajdhani-Bold.ttf");
  font-weight: bold;
}

body {
  font-family: 'Rajdhani';
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
}

.container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
}

.input-group,
.card-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 14px;
  color: #888888;
}

input {
  font-family: 'Rajdhani';
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.card-group {
  display: flex;
  flex-direction: column;
}

.card-input {
  margin-bottom: 10px;
}

.expiry-cvv {
  display: flex;
  justify-content: space-between;
}

.expiry-input,
.cvv-input {
  width: 48%;
}

.submit-button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Rajdhani';
  font-weight: bold;
  font-size: 18px;
}

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

.submit-button:disabled {
  background-color: #0258FA80;
  cursor: not-allowed;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.logo img {
  width: 100px;
}

.loader-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.loader {
  border: 5px solid #0258FA26; 
  border-top: 5px solid #002060;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.message {
  color: #002060;
  display: flex;
  justify-content: center;
}