@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
   margin: 0;
   padding: 0;
   font-family: "Poppins", sans-serif;
   box-sizing: border-box;
}

.book {
    padding: 40px 5%;
    text-align: center;
    height: 100vh;
    background-size: cover;
 }

 .book h1{
    font-size: 35px;
    margin-bottom: 45px;
 }
  
.book strong{
    color: #00308F;
}
.book span{
    color: #00308F;
}
.book-container {
    display: flex;
    max-width: 900px;
    justify-content: center;
    gap: 40px;   
    margin: 0 auto;
    flex-wrap: wrap;   
}

form {
    background: white;
    padding: 20px;
    max-width: 450px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

label {
    display: block; 
    margin-top: 15px;
    text-align: left;
    width: 470px;
}   

select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    appearance: none;
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio {
    width: 11%;
    height: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
  
}
.book-container textarea {
    height: 120px;
    margin-top: 7px;
    width: 410px;
    padding: 12px;
    border-radius: 15px;
}

input{
    width: 100%;
    padding: 5px;
    margin: 10px 0 ;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.home-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 50px;
}

button {
    width: 100px;
    height: 40px;
    border-radius: 20px;
    background-color: #00308F;
    font-size: 16px;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #010b1f;
}


