body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%),
        url('/assets/img/cottonclouds.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    z-index: -1;
}

.login-label{
    color: rgb(70, 69, 69);
    font-weight: 10px;
    font-family: "Roboto";
    font-size: medium;
}


.service-h2 {
    font-size: 78px;
    font-weight: 650;
    margin-bottom: 1.5rem;
    color: #483e3e;
    font-family: 'Lora', serif;
    letter-spacing: -3px;
    margin-top: -10px;

}

.service-p {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #555;
    font-size: 16px;
    letter-spacing: 1cap;
    margin-top: 10px;
}

.login-box h2 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.login-box p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

form label {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-row a {
    font-size: 0.85rem;
    color: #656161;
    text-decoration: none;
}

input {
    width: 100%;
    padding: 0.6rem;
    background: white;
    border: 1px solid grey;
    border-radius: 6px;
    color: rgb(83, 80, 80);
    margin-bottom: 1rem;
}

button {
    width: 100%;
    padding: 0.7rem;
    background: #e0e0e0;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #ddd;
}

.login {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 50px;
}


.login-box {
    background-color: #fff;
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 340px;
}

.starter-section {
    background: transparent;
}

.h3{
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #555;
    font-size: 16px;
    letter-spacing: .2cm;
    margin-top: 10px;
}

.footer {
  background-color: white;
}

 .popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }

  .popup-content {
    background: white;
    margin: 15% auto;
    padding: 20px 30px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .popup-content h3 {
    margin-bottom: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: large;
  }

  #closePopup {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    background-color: rgb(246, 133, 152);
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }

  #closePopup:hover {
    background-color: rgb(149, 80, 92);
  }

  @media (max-width: 768px) {
  .service-h2 {
    margin-top: 60px !important;  
    font-size: 48px;              
    text-align: center;           
  }
}