/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/loginbago.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 20px; /* Add some margin to the right */
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Forms */
.form {
    width: 100%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 10px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 350px;
    height: 390px;
}

.modal-content input {
    width: calc(100% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 50px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

@media (max-width: 1280px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/Bg1280px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 20px; /* Add some margin to the right */
    font-size: 20px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 102%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 20px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 96%;
    font-size: 20px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 500px;
    height: 500px;
    font-size: 20px;
}

.modal-content input {
    width: calc(105% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 20px;
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 101%;
    margin: 4px 0;
    font-size: 20px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 50px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 1024px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../../website/assets/BG1024px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 50px;
    position: relative;
    width: 70%;
    max-width: 2000px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 130px; /* Add some margin to the right */
    font-size: 25px;
    height: 17cm;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 104%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 23px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 97.4%;
    font-size: 23px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
    font-size: 24px;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 600px;
    height: 600px;
    font-size: 28px;
}

.modal-content input {
    width: calc(105% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 28px;
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 101%;
    margin: 4px 0;
    font-size: 28px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 60px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 820px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/Bg820px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 100px;
    position: relative;
    width: 75%;
    max-width: 1000px;
    padding: 20px;
    height: 510px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 70px; /* Add some margin to the right */
    font-size: 20px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 17px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 97%;
    font-size: 17px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
    font-size: 18px;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    font-size: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 390px;
    height: 500px;
}

.modal-content input {
    width: calc(105% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 19px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 8px;
    font-size: 19px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 50px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 768px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/BG768px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 120px;
    position: relative;
    width: 80%;
    max-width: 1000px;
    padding: 20px;
    height: 510px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 50px; /* Add some margin to the right */
    font-size: 20px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 17px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 97%;
    font-size: 17px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
    font-size: 18px;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    font-size: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 390px;
    height: 500px;
}

.modal-content input {
    width: calc(105% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 19px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 8px;
    font-size: 19px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 50px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}


@media (max-width: 640px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/Bg640px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 200px;
    position: relative;
    width: 100%;
    max-width: 350px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 125px; /* Add some margin to the right */
    font-size: 10px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 105%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 10px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 95%;
    font-size: 12px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 350px;
    height: 430px;
}

.modal-content input {
    width: calc(100% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 50px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 430px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../../website/assets/Bg430px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 10px;
    position: relative;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 41px; /* Add some margin to the right */
    font-size: 15px;
    height: 12cm;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(95% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 13px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 90%;
    font-size: 12px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
    font-size: 15px;
    margin-right: 29px;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    height: 400px;
    font-size: 15px
}

.modal-content input {
    width: calc(110% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 103%;
    font-size: 13px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 414px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../../website/assets/Bg414px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 10px;
    position: relative;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 41px; /* Add some margin to the right */
    font-size: 15px;
    height: 12cm;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(95% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 13px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 90%;
    font-size: 12px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
    font-size: 15px;
    margin-right: 29px;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    height: 400px;
    font-size: 15px
}

.modal-content input {
    width: calc(110% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 103%;
    font-size: 13px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 412px) {
     /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/Bg320px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 100px;
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 400px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 60px; /* Add some margin to the right */
    font-size: 13px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 12px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 93%;
    font-size: 13px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    height: 380px;
    font-size: 13px
}

.modal-content input {
    width: calc(115% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 107%;
    font-size: 13px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 390px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../../website/assets/Bg414px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 50px;
    position: relative;
    width: 100%;
    max-width: 250px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 50px; /* Add some margin to the right */
    font-size: 15px;
    height: 12cm;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(95% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 13px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 90%;
    font-size: 12px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
    font-size: 15px;
    margin-right: 29px;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    height: 400px;
    font-size: 15px
}

.modal-content input {
    width: calc(110% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 103%;
    font-size: 13px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 375px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../../website/assets/BG375px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 130px;
    position: relative;
    width: 100%;
    max-width: 220px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 65px; /* Add some margin to the right */
    font-size: 12px;
    height: 11.2cm;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 12px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 92%;
    font-size: 12px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 200px;
    height: 380px;
    font-size: 13px
}

.modal-content input {
    width: calc(115% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 12px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 105%;
    font-size: 12px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 360px) {
     /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/Bg320px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 130px;
    position: relative;
    width: 100%;
    max-width: 230px;
    height: 360px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 50px; /* Add some margin to the right */
    font-size: 11px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 11px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 92%;
    font-size: 12px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 180px;
    height: 360px;
    font-size: 12px
}

.modal-content input {
    width: calc(115% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 12px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 103%;
    font-size: 12px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 344px) {
         /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/Bg344px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 100px;
    position: relative;
    width: 100%;
    max-width: 230px;
    height: 380px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 35px; /* Add some margin to the right */
    font-size: 12px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 12px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 92%;
    font-size: 13px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 200px;
    height: 380px;
    font-size: 13px
}

.modal-content input {
    width: calc(115% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 103%;
    font-size: 13px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}

@media (max-width: 320px) {
    /* General Styles */
html, body {
    margin:0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('../assets/Bg320px.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
}

.content {
    margin-top: 150px;
    position: relative;
    width: 100%;
    max-width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 40px; /* Add some margin to the right */
    font-size: 10px;
}

/* Form Container */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

/* Forms */
.form {
    width: 110%;
}

.form h2 {
    text-align: center;
    color: #002f76;
    margin-bottom: 5px;
}

.form input {
    width: calc(100% - 20px); /* Adjust width to fit within the card */
    padding: 10px;
    margin-bottom: 3px;
    border: 2px solid #ffdf00;
    border-radius: 6px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    font-size: 10px;
}

.form button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    width: 92%;
    font-size: 12px;
}

.form button:hover {
    background: #001f5b;
}

.signup {
    text-align: center;
}

.signup a {
    color: #002f76;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.signup a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 150px;
    height: 360px;
    font-size: 12px
}

.modal-content input {
    width: calc(115% - 20px); /* Adjust width to fit within the modal */
    padding: 10px;
    margin: 10px 0;
    font-size: 12px;
    border: 1px solid #ffdf00;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.modal-content button {
    padding: 10px;
    background: #002f76;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 103%;
    font-size: 12px;
}

.modal-content button:hover {
    background: #001f5b;
}

.close {
    color: #002f76;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
}