﻿body {
  background-color: rgb(228, 229, 247);
}
a {
  text-decoration: none;
}

.card {
  font-family: sans-serif;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3em;
  margin-bottom:3em;
  border-radius: 10px;
  background-color: #ffff;
  padding: 1.8rem;
  box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.1);
}

.title {
  text-align: center;
  font-weight: bold;
  margin: 0;
}
.subtitle {
  text-align: center;
  font-weight: bold;
}
.btn-text {
  margin: 0;
}
.email-login {
  display: flex;
  flex-direction: column;
}
.email-login label {
  color: rgb(170 166 166);
}

input[type="text"],
input[type="password"] {
  padding: 15px 20px;
  margin-top: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.cta-btn {
  background-color: rgb(69 185 95);
  color: white;
  padding: 18px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  border: none;
}

.cta-btn:hover{
     background-color:rgb(69 185 95 / 58%);
}

.cta-btn:active{
     background-color:rgb(69 185 95);
}

.forget-pass {
  text-align: center;
  display: block;
}

.notify {
  text-align: center;
  display: block;
  color: green;
}

.notify-blue {
  text-align: center;
  display: block;
  color: cornflowerblue;
  font-weight:bold;
  font-size:16px;
}

.notify-pink {
  text-align: center;
  display: block;
  color: deeppink;
  font-weight:bold;
  font-size:14px;
}
.chekbox-label{
    text-align:left;
    font-size: 14px;
}

.btn-info{
    background:green;
    padding: 1px 5px;

}


.popup-overlay {
  position: absolute;
  width: 500px;
  margin-left: 33em;
  margin-right: auto;
  margin-top: 3em;
  margin-bottom:3em;
  background-color: rgba(0, 0, 0, 0.6);
  visibility:hidden;
}
.popup-content {
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(70%, -100%);
    margin-left: 21em;
    background-color: #fff;
    z-index: 0;
    padding: 1rem;
    border-radius: 5px;
}

.popup-overlay.active{
    visibility:visible;      
}

.image{
    width: 350px;  
    height: auto;  
    text-align: center;  
    padding: 15px;  
    object-fit:cover
}
.modal-info-hdr{
    color:coral;
    font-size:16px;
    text-align:center;
    font-weight:bold;
    
}

.modal-info-ul{
    font-family: sans-serif;
    color:navy;
    padding:20px;
    font-size:13px;
    text-align:center;
}

.close {
  color:#474544 ;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


