@font-face {
  font-family: 'Bernoru';
  src: url('Bernoru.woff2') format('woff2'),
       url('Bernoru.woff') format('woff');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif; /* Removed 'Bernoru' */
}

/* Body and Container Layout */
body {
  background: url("background.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  transition: filter 0.5s ease;
  flex-direction: column;
  overflow-y: auto; /* Enables vertical scrolling */
}


.input-group .icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #1d662c;
    font-size: 18px;
}

.toggle-password{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #1d662c;
    font-size: 18px;
}


/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close-btn {
    float: right;
    font-size: 20px;
    cursor: pointer;
}



footer {
    color: black;
    text-align: center;
    padding: 20px 0;
}


/* Main Content */
.content {
  transition: filter 0.9s ease;
}


/* Main content wrapper */
.main-content {
  width: 80%; /* Default width for larger screens */
  max-width: 850px; /* Prevents it from getting too wide */
  margin: auto; /* Centers the content */
  transition: filter 0.3s ease-in-out;
}

/* ✅ Tablets (Medium Screens) */
@media (max-width: 1024px) {
  .main-content {
    width: 90%; /* Adjust width for tablets */
    padding: 15px;
  }
}

/* ✅ Mobile Screens */
@media (max-width: 768px) {
  .main-content {
    width: 95%; /* Make it nearly full-width */
    padding: 10px;
  }
}

/* ✅ Extra Small Screens */
@media (max-width: 480px) {
  .main-content {
    width: 100%; /* Full width for small phones */
    padding: 10px;
  }
}


/* Blur effect when modal is active */
.blur-active {
  filter: blur(10px); /* Adjust the blur intensity */
  pointer-events: none; /* Prevent clicking on blurred elements */

}


/* Blur Effect with Dark Overlay */
.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  z-index: 10;
}

/* Show Blur Effect when Active */
.blur-overlay.active {
  visibility: visible;
  opacity: 60;
}


.container {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 15px;
}

/* Logo Section */
.logos {
  display: flex;
  justify-content: center; /* Center the logos */
  align-items: center;
  gap: 60px; /* Space between logos */
  position: relative; /* Ensures it does not overlap */
  z-index: 2; /* Keeps it above the background */
  top: 1px;
}

.logos img {
  height: 100px; /* Adjust logo size */
  max-width: 100px; /* Prevents stretching */
  object-fit: contain; /* Ensures logos remain clear */
  filter: drop-shadow(1px 4px 8px rgba(0, 0, 0, 0.7)); /* X, Y, Blur, Color */
  border-radius: 10px; /* Optional: Makes edges smoother */
}

/* Centering the button inside its container */
.text-content {
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.large-text {
  font-size: 120px;
  font-weight: bold;
  color: #6b8f51; /* Dark green */
  text-shadow: 4px 4px 1px rgba(0, 0, 0, 0.4);
  font-family: 'Bernoru', sans-serif;
}

.middle-text {
  font-size: 40px;
  font-weight: bold;
  color: #4c664d;
  font-family: 'Bernoru', sans-serif;
  margin-left: 10px;
  margin-right: 10px;
}

.small-text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #6b8f51;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Line & Dot Container */
.line-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dots */
.dot {
    width: 18px;
    height: 18px;
    background-color: #4c664d;
    border-radius: 50%;
    margin: 0 -6px; /* Moves the dots closer to the lines */
}

/* Lines */
.line {
    width: 170px;
    height: 6px;
    background-color: #4c664d;
    border-radius: 3px;
}

/* Login Button */
button.login {
  background: #2D512F;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 20px;
  border-radius: 30px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

button.login:hover {
  background: #1B3A1A;
}

/* Sign-up link */
.signup {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.signup a {
  color: #2D512F;
  font-weight: bold;
  text-decoration: none;
}

.signup a:hover {
  text-decoration: underline;
}

/* Social Media Section */
.socials {
  font-family: 'Glacial Indifference', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
  border-radius: 8px;
}

/* Social Media Links */
.socials a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Social Media Hover Effect */
.socials a:hover {
  color: #2d5e2d;
}

/* Social Media Icons */
.socials img {
  width: 30px;
  height: auto;
}

/* Disclaimer */
.disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* ========================= */
/* SIGNUP & LOGIN FORM STYLES */
/* ========================= */
.close-btn1 {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 200%;
  cursor: pointer;
  background: none;
  border: none;
}
/* Signup Form Container */
.signup-container {
  display: flex;
  background: #d3e1ab;
  padding: 10px;
  border-radius: 12px;
  align-items: center;
  width: 100%;
  margin: auto;
  align-content:  space-between;
  gap: 30px;
}

/* Left Section */
.signup-left {
  width: 30%;
  padding: 20px;
  border-radius: 20px;
  background-color: #f7fce8;
  height: 500px;
}


.signup-left label {
  display: block; /* Ensures label is treated as a block */
  text-align: left;
  font-size: 12px;
  left: 10px;
}


/* Back Button */
.back-btn {
  position: absolute;
  top: 25px;
  left: 40px;
  font-size: 30px;
  cursor: pointer;
}

.back-btn2 {
  position: absolute;
  top: 1px;
  left: 10px;
  font-size: 30px;
  cursor: pointer;
}


/* Profile Upload Section */
.profile-upload {
  margin-top: 40px;
}

.profile-image {
  width: 115px;
  height: 114px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  border: solid;

}

.profile-image img {
  width: 110px;
  height: 110px; /* Fixed the spacing issue */
  border-radius: 50%;
  object-fit: cover; /* Ensures the image fills the container without distortion */
}

/* Upload Icon (Label as Button) */
.upload-icon {
  position: absolute;
  bottom: 5px;
  background: black;
  color: white;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  border: 1px solid #2D512F;
  text-align: center;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.upload-icon p{
  margin-top: -12px;
  margin-right: 1px;
  font-size: 22px;
  font-weight: bold;
 
}

.signup-left select{
  background: #e5f5e0;
  border-radius: 20px;
  font-size: 12px;
}

.signup-left #e5f5e0{
  background: #acd87d;
  border-radius: 5px;

}

.signup-left p{
  margin-bottom:30px ;
}


/* Submit Button */
.submit-btn {
  width: 30%;
  background: #52a15a;
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
}

.submit-btn:hover {
  background: #1B3A1A;
}

/* Right Section */
.signup-right {
  width: 70%;
  padding: 20px;
  text-align: center;
  background: #f7fce8;
  border-radius: 20px;
  position: relative;
}

h2 {
  font-size: 24px;
  color: #2D512F;
}

h3 {
  font-size: 16px;
  margin-top: 10px;
  text-align: left;
}

/* Input Fields */
.input-row-info {
  display: flex;
  gap: 5px;
}


.input-row-info input {
  display: flex;
  gap: 5px;
  background: #e5f5e0;
  border-radius: 20px;
}



input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5f5e0;
  border-radius: 50px;
  font-size: 14px;
}


/* Birth Date Input */
.date-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #2D512F;
  background: #e5f5e0;
  text-align: center;
  cursor: pointer;
}


.bod{
  width: 600px;
}

.input-row{
  display: flex;
  flex: 1;
  margin-top: 5px;
  gap: 4px;

}

.input-row input{
  border-radius: 50px;
  background: #e5f5e0;
  border: #96ca70;
}

.input-row select{
  background: #e5f5e0;
  border: #e5f5e0;
}


.address-baranggay{
  width:50%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #e5f5e0;
  color: #fdfdfd;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.address-City{
  width: 40%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #e5f5e0;
  color: #fdfdfd;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.address-zipcode{
  width: 20%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #F2F6E3;
  color: #fdfdfd;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}



/* Signup & Login Buttons */
.login-btn {
  width: 100%;
  background: #6b8f51;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.signup-btn {
  width: 100%;
  background: #96ca70;
  color: white;
  border: none;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 12px;
  font-family: "Poppins", sans-serif;
}



.signup-btn:hover, .login-btn:hover {
  background: #1B3A1A;
}


.signup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background: rgb(211, 225, 171);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  overflow-y: auto; /* Enables scrolling if needed */
  max-height: 90vh; /* Prevents modal from exceeding screen height */
}

/* Show Forms when Active */
.signup-form.show, .signup-form2.show {
  visibility: visible;
  opacity: 1;
}


.signup-form2{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 380px;
  background: #d3e1ab;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  overflow: hidden;
  overflow-y: auto; /* Enables vertical scrolling */
  max-height: 90vh; /* Prevents the form from exceeding screen height */
}
/* Show Forms when Active */
.signup-form2.show {
  visibility: visible;
  opacity: 1;
}

.signup-form{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 1000px;
  background: rgb(211, 225, 171);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  overflow: hidden;
  overflow-y: auto; /* Enables vertical scrolling */
  max-height: 90vh; /* Prevents the form from exceeding screen height */
}
/* Show Forms when Active */
.signup-form.show {
  visibility: visible;
  opacity: 1;
}

.middle-no {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}


.middle-no input {
  width: 100%;
  padding: 10px 10px 10px 10px;
  border-radius: 50px;
  background-color: #e5f5e0;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.middle-no select {
  width: 100%;
  padding: 10px 10px 10px 10px;
  border-radius: 50px;
  background-color: #e5f5e0;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}




/* Responsive Design */


@media (max-width: 1024px) {

  .login-form-container{
    flex-direction: column;
    margin: auto ;
  }


  .signup-container {
    flex-direction: column;
  }

  .signup-left, .signup-right {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
  }

  .signup-form {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {


  h2 {
    font-size: 20px;
  }

  .back-btn, .back-btn2 {
    font-size: 20px;
  }

  .profile-image {
    width: 100px;
    height: 100px;

  }

  .profile-image img {
    width: 100px;
    height: 100px;
    margin-top: 3px;
    margin-left: 2px;
  }


  .upload-icon {
    margin-right: 2px;
    font-size: 14px;
    width: 20px;
    height: 20px;
  }

  .input-row-info, .middle-no {
    flex-direction: column;
  }

  .address-baranggay, .address-City, .address-zipcode {
    width: 100%;
  }
}

@media (max-width: 480px) {


  .profile-image img {
    margin-top: 2px;
    margin-right: 1.5px;
  }


  .upload-icon {
    right: 3px;
    font-size: 14px;
    width: 24px;
    height: 20px;
  }

  .signup-form {
    width: 95%;
    padding: 15px;
  }

  .back-btn, .back-btn2 {
    top: -20px;
    left: 10px;
    font-size: 50px;
  }

  h2 {
    font-size: 18px;
  }

  input, select {
    font-size: 14px;
    padding: 8px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }
}



/* Centered Forms */






.login-form-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  max-height: 90vh;
  overflow-y: auto; /* Enables vertical scrolling */
}


.login-form-container h2 {
  color: #1b6535;
  font-size: 32px;
  text-align: left;

}


/* Show Forms when Active */
.login-form-container.show {
  visibility: visible;
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}


/* Improved Input Field Styling */
.input-group3 {
  position: relative;
  margin: 20px 0;
}

.input-group3 label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #2d5e2d;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.input-group3 input {
  width: 100%;
  padding: 12px 12px 12px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #e5f5e0;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

/* Move Label on Focus */
.input-group3 input:focus ~ label,
.input-group3 input:valid ~ label {
  top: -18px;
  left: 17px;
  font-size: 15px;
  transform: scale(0.9);
}

.input-group3 input:focus {
  border-color: #2D512F;
}



/* Improved Input Field Styling */
.input-group {
  position: relative;
  margin: 20px 0;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #2d5e2d;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.input-group input {
  width: 100%;
  padding: 12px 12px 12px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

/* Move Label on Focus */
.input-group input:focus ~ label,
.input-group input:valid ~ label {
  top: -25px;
  left: 17px;
  font-size: 16px;
  transform: scale(0.9);
}

.input-group input:focus {
  border-color: #2D512F;
}

/* Checkbox Container */
.checkbox-container {
  justify-content: center;
  display: flex;
  align-items: center; /* Aligns checkbox and text vertically */
  gap: 8px; /* Adjust spacing between checkbox and text */
  margin-bottom: 15px;
  font-size: 14px;
}

/* Checkbox Input */
.checkbox-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Checkbox Label */
.checkbox-container label {
  cursor: pointer;
  color: #2D512F;
  font-size: 14px;
}


/* Password Input Container */
.password-container2 {

  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  margin-top: 25px;
}

.password-container2 input {
  width: 100%;
  padding: 12px 12px 12px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #e5f5e0;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.password-container2 label {
  position: absolute;
  top: 11px;
  left: 10px;
  color: rgb(45, 94, 45);
  font-size: 15px;
  transition: 0.3s ease-in-out;
}

.password-container2 input:focus + label,
.password-container2 input:valid + label {
  top: -18px;
  left: 15px;
  font-size: 15px;
  color: rgb(45, 94, 45);
  background: rgba(45, 94, 45, 0);
  padding: 0 5px;
}

.password-container2 small {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 5px;
}

.toggle-password2 {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #555;
  display: none; /* Initially hidden */
}

small {
  font-size: 12px;
  display: none;
}

/* Password Input Container */
.password-container {
  position: relative;
  margin: 35px 0;
}

/* Password Input */
.password-container input {
  width: 100%;
  padding: 12px 12px 12px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

/* Label Styling */
.password-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #2d5e2d;
  pointer-events: none;
  transition: 0.3s ease-in-out;

}

/* Move Label on Focus */
.password-container input:focus ~ label,
.password-container input:valid ~ label {
  top: -25px;
  left: 17px;
  font-size: 16px;
  transform: scale(0.9);
}

.input-group input:focus {
  border-color: #2D512F;
}


/* Show Password Icon */
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #2D512F;
}

/* Forgot Password */
.forgot-password {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #2D512F;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Separator */
.separator {
  margin: 15px 0;
  border: none;
  height: 1px;
  background: #2D512F;
  width: 100%;
}


#error-message-container {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  display: none; /* Hide by default */
}



/* ============================= */
/* 📱 Responsive Design for All Devices */
/* ============================= */



/* 📱 Tablets (481px - 768px) */
@media (max-width: 768px) {


  .container {
    padding: 30px;
    max-width: 100%; /* Ensure it adjusts well */
  }

  .logos {
    display: flex;
    flex-wrap: wrap; /* Prevents overlap */
    justify-content: center;
    align-items: center;
    margin-top: 0; /* Removed negative margin */
    gap: 20px;
  }

  .logos img {
    height: 50px; /* Slightly smaller for balance */
    max-height: 60px;
  }


  button.login {
    padding: 12px 30px;
    font-size: 18px;
  }

  .socials {
    flex-direction: row; /* Keep icons in one line if possible */
    flex-wrap: wrap; /* Allow them to wrap when needed */
    gap: 12px;
    justify-content: center;
  }

  .socials img {
    width: 28px;
  }
}


/* 💻 Laptops & Desktops (769px - 1200px) */
@media (max-width: 1200px) {

  .container {
    max-width: 850px;
  }

  .logos img {
    height: 100px;
  }

  .title-image {
    max-width: 90%;
  }

  .subtitle {
    font-size: 20px;
  }

  .socials {
    flex-direction: row; /* Keep icons in one line if possible */
    flex-wrap: wrap; /* Allow them to wrap when needed */
    gap: 12px;
    justify-content: center;
  }

  .socials img {
    width: 28px;
  }
}

/* 🖥️ Large Screens & Desktops */
@media (min-width: 1201px) {
 
  .container {
    max-width: 900px;
  }

  .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Ensures proper alignment */
    gap: 50px;
    position: relative;
    z-index: 1;
    margin-top: 10px; /* Adjust to prevent overlapping */
  }

  .logos img {
    display: block;
    max-height: 100px;
    object-fit: contain;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .large-text {
    font-size: 100px;
    text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.4);
  }
  .middle-text {
    font-size: 35px;
  }
}

@media (max-width: 992px) {
  .large-text {
    font-size: 80px;
  }
  .middle-text {
    font-size: 30px;
  }
  .small-text {
    font-size: 18px;
  }
  .dot {
    width: 25px;
    height: 25px;
  }
  .line {
    height: 8px;
  }
}

@media (max-width: 768px) {
  .line-container {
    width: 60%;
  }

  .large-text {
    font-size: 60px;
  }
  .middle-text {
    font-size: 25px;
  }
  .small-text {
    font-size: 16px;
  }
  .dot {
    width: 20px;
    height: 20px;
  }
  .line {
    height: 6px;
  }
}

@media (max-width: 576px) {

  .line-container {
    width: 70%;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .line {
    height: 3px;
  }

  .large-text {
    font-size: 50px;
  }

  .middle-text {
    font-size: 30px;
  }

  .small-text {
    font-size: 15px;
  }
}