body {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: Arial, sans-serif;
   /* background-color: #f4f4f9; */
   background-color: #fff;
   /* color: #333; */
   color: #000;
   /* display: flex;
   justify-content: center;
   align-items: center; */
   height: 100vh;
   /* padding: 20px; */
}
.img{
   width: 50px;
   height: 50px;
   border-radius: 50%;
}

.collapse button{
   padding: 5px 10px;
   border: 1px solid #fff;
   width: 100px;
}
.buy{
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 10px;
}
#buy-now{
   display: none;
}
.loader{
   /* overflow: hidden; */
   position: fixed;
   width: 100%;
   z-index: 9999;
   /* display: none; */
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
   /* background: linear-gradient(13deg, rgba(10, 0, 0, 0.274), rgba(19, 11, 11, 0.308)); */
   backdrop-filter: blur(30px);
}
.navbar-brand{
   font-family: "Playwrite IN", serif;
   /* font-family: "Bebas Neue", serif; */
   font-weight: 400;
  font-style: normal;
  margin-left: 5px;
}
#loader img{
   width: 300px;
}
.buy-now-form-container {
   background-color: #fff;
   padding: 30px 20px;
   border-radius: 12px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   width: 100%;
   max-width: 450px;
}

.buy-now-form-container h1 {
   font-size: 30px;
   margin-bottom: 10px;
   text-align: center;
   font-weight: bold;
}

.buy-now-form-container p {
   color: orangered;
   font-size: 16px;
   margin-bottom: 20px;
   text-align: center;
   /* color: #555; */
}

.form-group {
   margin-bottom: 15px;
   text-align: left;
}

.form-group label {
   display: block;
   font-size: 16px;
   font-weight: bold;
   margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
   width: 100%;
   /* height: 50px; */
   padding: 10px;
   font-size: 14px;
   border: 1px solid #ddd;
   border-radius: 8px;
   outline: none;
   transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   border-color: #3498db;
}

/* Button Styling */
.btn {
   color: #fff;
   border: none;
   padding: 10px 15px;
   font-size: 16px;
   border-radius: 8px;
   cursor: pointer;
   width: 100%;
   transition: background-color 0.3s, transform 0.2s;
}


.btn:active {
   transform: scale(0.98);
}
