html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('/images/sanatan-bg.jpeg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
img.right_logo {
    position: absolute;
    max-width: 180px;
    right: 16%;
}
body::after {
    content: " ";
    height: 100px;
    width: 700px;
    background-image: url(/images/warrior.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
body::after {
    content: " ";
    height: 100%;
    width: 500px;
    background-image: url(/images/warrior.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 10%;
}
.login_form {
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    left: 70%;
    top: 50%;
    border: 1px solid #dad5d5;
    width: 320px;
    max-width: 100%;
    padding: 10px 40px 40px;
    text-align: center;
    color: #fff;
    background: rgba(211, 130, 50, .7);
    border-radius: 15px;
}
.login_form h2{
        font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
}
.login_form form>div {
    width: 100%;
}
.login_form input {
    background: transparent;
    border: 1px solid #cecdcd;
    box-shadow: none;
    margin: 10px 0 0px;
    padding: 15px 0px 15px 15px;
    border-radius: 15px;
    font-size: 16px;
    max-width: 100%;
    width: 100%;
}
.error {
    background: red;
    width: 100%;
    margin: 7px 0px 0;
}
.login_form button {
    background: #595858;
    border: none;
    padding: 10px 30px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 15px;
        margin-top: 15px;
}
a#newsletterhit {
    color: #444;
    font-size: 16px;
    margin: 20px auto 0;
    display: table;
    text-transform: uppercase;
}
input::placeholder,
textarea::placeholder {
    color: #fff; /* light gray or any color */
    opacity: 1;  /* ensure it's not semi-transparent */
}
.newsletter-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.newsletter-dialog {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 20px;
  width: 300px;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.newsletter-input {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter-buttons {
  display: flex;
  justify-content: space-between;
}

.newsletter-button {
  padding: 8px 14px;
  border: none;
  background-color: #007BFF;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-button.cancel {
  background-color: #6c757d;
}

@media (max-width: 768px) {
    body::after {
        height: 50%;
        width: 630px;
        left: 0%;
        bottom: 0;
        max-width: 100%;
    }
    img.right_logo {
        left: 50%;
        top: 9%;
        transform: translateX(-50%) translateY(-50%);
    }
    .login_form {
        left: 50%;
        top: 34%;
        width: 290px;
        max-width: 100%;
    }
}