/* */


/* --------------- */

* {
    box-sizing: border-box;
}




input[type="checkbox"] {
  display: none;
}

/* Style the label */
input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px; /* space for custom checkbox */
  cursor: pointer;
  font-size: 16px;
}

/* Create the custom checkbox with pseudo-element */
input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 7px 3px;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Change color when checked */
input[type="checkbox"]:checked + label::before {
  background-color: var(--light_bird_color);
  border-color: #fff;
}

/* Add checkmark when checked */
input[type="checkbox"]:checked + label::after {
  content: '✔';
  position: absolute;
  left: 5px;
  top: 2px;
  color: white;
  font-size: 14px;
}

/* Optional: Hover effect */
input[type="checkbox"] + label:hover::before {
  border-color: var(--light_bird_color);
}


.listed-item {
    margin-top: 2%;
}

.login-container {
    margin: 0 auto;
    margin-top: 5%;
    align-items: space-around;
    color: var(--light_bird_color);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #fff;
    border-radius: 25px 7px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 40%;
    min-width: 300px;
    margin-bottom: 32px;
}

.service-item-check {
    display: flex;
    width: 100%;
    justify-content: left;
    margin: 4px;
}

.check { 
    width: 20px; 
    height: 20px; 
    display: none;
   
}

h3 {
    text-align: center;
    margin-bottom: 20px;
}
 
.input-group {
    margin-bottom: 15px;
    
}

.btn_send {
    display: flex;
    justify-content: center;
}



.group {
    display: flex;
    flex-flow: row wrap;
    width: 40%;
    justify-content: left;
    margin: auto;
}

.grouped {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    width: 200px;
    justify-self: center;
    margin-left: 48px;
}

.inout-group {
    margin: auto;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--light_bird_color);
}

input[type="text"],
input[type="password"], textarea, input {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    border-radius: 7px;
    font-size: 14px;
    outline: none;
    justify-self: center;
    text-align: center;  /* Correct property to center the text */
}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 2px solid var(--light_bird_color);  /* Change border to green when focused */
 }




button {
    width: 40%;
    padding: 10px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: #92BDC4;
    color: white;
    border: 2px solid #555;
    border-radius: 25px 7px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

button:hover {
    background-color: #A0CFD6;
    border-color: #777;
}



.signup-link { 
    text-align: center;
    margin-top: 10px;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

h2 {
    text-align: center;
}


@media (max-width: 860px) {
    .login-container {
        width: 90%;{
}
