* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url('../assets/Loginbg.jpg');
    background-size: cover;
}
header {
    position: absolute;
    display: flex;
    font-size: 1rem;
    color: white;
    top: 40px;
}
header img {
    height: 50px;
    margin-left: 40px;
    margin-right: 10px;
}
header p {
    font-size: 2.5rem;
    font-family: "Lilita One", sans-serif;
}

.loginbox {
    display: flex;
    border: 5px solid transparent;
    margin: 50px;
    padding: 50px;
    justify-content: center;
    align-items: center;
    color: white;
    height: auto;
}

.parent1 {
    display: flex;
    border: 5px solid transparent;
    padding: 20px;
    justify-content: center;
    margin-top: 10px;
}

.parent1 p {
    font-size: 30px;
    font-family: "Lilita One", sans-serif;
}
.logininfo {
    padding-bottom: 15px;
}
.logininfo .password {
    margin-bottom: 10px;
}
.logininfo input {
    padding: 10px;
    border: 5px solid transparent;
    border-radius: 30px;
    width: 300px;
}
::placeholder {
    font-family: "Lilita One", sans-serif;
}
.continuewith {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    
}
.continuewith .fb {
    cursor: pointer;
    border: 5px solid transparent;
    background-color: #3636cc;
    border-radius: 15px;
    padding-top: 5px; padding-left: 16px; padding-right: 16px;
}
.continuewith img {
    
    height: 20px;
}
.continuewith .google {
    cursor: pointer;
    border: 5px solid transparent;
    background-color: white;
    border-radius: 15px;
    padding-top: 5px; padding-left: 16px; padding-right: 16px;
}
.forgot {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}
.forgot a {
    font-size: 12px;
    margin: 0;
    color: white;
    text-decoration: none;
}
#check {
    margin-right: 10px;
}
.submit button {
    margin-top: 25px;
    padding: 10px;
    border: 5px solid transparent;
    border-radius: 30px;
    width: 300px;
    font-size: 15px;
    font-family: "Lilita One", sans-serif;
    cursor: pointer;
    margin-bottom: 25px;
}
.signup {
    display: flex;
    justify-content: center;
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}
.signup p {
    margin-right: 7px;
}
.signup a {
    text-decoration: none;
    color: #c4ae89;
    font-size: 15px;
}
.showpass {
    display: flex;
   
    justify-content: center;
    align-items: center;
    
}
.showpass button {
    position: absolute;
    margin-bottom: 7px;
    margin-left: 250px;
    border: none;
    background: transparent;
}
.modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 350px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 24px;
}
