 body {
     font-family: Arial, sans-serif;
     background-color: white;
     margin: 0;

 }

 h2 {
     text-align: center;
 }

 form {
     background: #fff;
     padding: 20px;
     max-width: 500px;
     margin: 25px auto;
     border-radius: 10px;
     box-shadow: 0 0 10px #ccc;
 }

 input,
 select,
 textarea {
     width: 100%;
     padding: 8px;
     margin: 15px 0;
     box-sizing: border-box;
 }

 button {
     background-color: #045249;
     color: white;
     padding: 10px 15px;
     border: none;
     font-size: larger;
     cursor: pointer;
     border-radius: 1000px;
     text-align: center;
     width: 500px;
 }

 .admin-link {
     text-align: center;
     margin-top: 20px;
 }

 .admin-link a {
     text-decoration: none;
     font-size: 10px;
     color: gainsboro;
     position: relative;
 }

 .badge {
     background: gainsboro;
     color: white;
     border-radius: 50%;
     padding: 3px 8px;
     font-size: 12px;
     position: absolute;
     top: -10px;
     right: -15px;
 }

 .modal {
     display: none;
     position: fixed;
     z-index: 9999;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.4);
 }

 .modal-content {
     background-color: white;
     margin: 10% auto;
     padding: 20px;
     border-radius: 10px;
     width: 90%;
     max-width: 700px;
 }

 .modal .close {
     float: right;
     font-size: 24px;
     cursor: pointer;
 }

 .user-record {
     border-bottom: 1px solid #ccc;
     margin-bottom: 15px;
     padding-bottom: 10px;
 }

 .delete-btn {
     background: red;
     color: white;
     padding: 5px 10px;
     border: none;
     margin-top: 5px;
     cursor: pointer;
     border-radius: 4px;
 }

 .second {
     background-image: url(accessrioes/h1-bg-1.webp);
     background-repeat: no-repeat;
     background-size: cover;
     object-fit: contain;
     background-position: center center;
     width: auto;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: auto;
 }

 .second h1 {
     font-family: "Larken-Bold", Sans-serif;
     font-size: 55px;
     font-weight: 600;
     color: white;
     margin: 10px;
     padding: 20px;
     padding-bottom: 5px;
 }

 .second p {

     text-align: center;
     font-family: "Nunito Sans", Sans-serif;
     font-size: 18px;
     font-weight: 400;
     padding: 20px;
     padding-top: 0px;
     text-transform: none;
     font-style: normal;
     text-decoration: none;
     line-height: 25px;
     letter-spacing: 0;
     word-spacing: 0em;
     color: white;

 }

 .user-form-section {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
 }

 .user-form-section h2 {

     font-family: "Larken-Bold", Sans-serif;
     font-size: 34px;
     font-weight: 600;
     text-transform: none;
     font-style: normal;
     text-decoration: none;
     line-height: 1.2em;
     letter-spacing: 0;
     word-spacing: 0em;
 }


 .user-form-section p {
     width: 600px;
     text-align: center;
     font-family: "Nunito Sans", Sans-serif;
     font-size: 16px;
     font-weight: lighter;
     text-transform: none;
     font-style: normal;
     text-decoration: none;
     line-height: 25px;
     letter-spacing: 0;
     word-spacing: 0em;
 }

 @media screen and (max-width:1300px) {
     .second h1 {
         font-size: 50px;
         margin: 10px;
         padding: 10px;
     }

     .second p {
         padding: 10px;
     }

     .user-form-section h2 {
         font-size: 32px;
     }


     .user-form-section p {
         width: 310px;
         margin: 0px;
     }

     form {
         max-width: 270px;
     }

     input,
     select,
     textarea {
         width: 270px;
     }

     button {
         width: 270px;
     }
 }