/* Add-form  container */
.add-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    margin-bottom:20px;
    background:var(--ast-global-color-4);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-webkit-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-moz-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);

  
}
.ast-row select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--ast-global-color-3);
    box-sizing: border-box;
    appearance: none; 
    -webkit-appearance: none; 
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>'); /* Custom dropdown arrow */
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px 16px;
}

/* Styling for the select element when focused */
.ast-row select:focus {
    outline: none;
    border-color: var(--ast-global-color-4); 
}

/* Styling for the option elements */
.ast-row select option {
    padding: 8px;
    color: var(--ast-global-color-1); /* Text color */
    background-color: #fff; /* Background color */
}

.add-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--ast-global-color-2);
    margin-bottom: 10px;
}

.add-form input, .add-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--ast-global-color-3);
    box-sizing: border-box;
}

.add-form textarea {
    resize: vertical;
}

.add-form input[type="submit"] {
    border-style: solid;
    border-top-width: 2px;
    border-right-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-1);
    color: #ffffff;
    font-family: 'Source Sans 3',sans-serif;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 0.88888888888889rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-top: 15px;
    padding-right: 32px;
    padding-bottom: 15px;
    padding-left: 32px;

}

.add-form input[type="submit"]:hover {
    border-color: var(--ast-global-color-0);
    background-color: var(--ast-global-color-0);
}

.add-form .current-picture {
    margin-left: 2px;
    padding: 0px 30px 60px 15px;
    text-align: center;
    background-color: transparent;
    width: 50px;
    height: 50px;
}

.add-form .current-picture p {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.add-form .current-picture img {
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    position: relative; 
    border: 1px solid #ddd;
    box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-webkit-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-moz-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
   
}


/* Update-form  container */
.update-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    margin-bottom:20px;
    background:var(--ast-global-color-4);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-webkit-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-moz-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
  
}

.update-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--ast-global-color-2);
    margin-bottom: 10px;
}

.update-form input, .update-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--ast-global-color-3);
    box-sizing: border-box;
}

.update-form textarea {
    resize: vertical;
}

.update-form input[type="submit"] {
    border-style: solid;
    border-top-width: 2px;
    border-right-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-1);
    color: #ffffff;
    font-family: 'Source Sans 3',sans-serif;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 0.88888888888889rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-top: 15px;
    padding-right: 32px;
    padding-bottom: 15px;
    padding-left: 32px;

}

.update-form input[type="submit"]:hover {
    border-color: var(--ast-global-color-0);
    background-color: var(--ast-global-color-0);
}

.update-form .current-picture {
    margin-left: 2px;
    padding: 0px 30px 60px 15px;
    text-align: center;
    background-color: transparent;
    width: 50px;
    height: 50px;
}

.update-form .current-picture p {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.update-form .current-picture img {
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    position: relative; 
    border: 1px solid #ddd;
    box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-webkit-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-moz-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
}


/* Login-form container */
.login-form {
    max-width: 400px;
    width:50%;
    margin: 0 auto;
    padding: 40px;
    margin-top:20px;
    margin-bottom:20px;
    background:var(--ast-global-color-4);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-webkit-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-moz-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);

  
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--ast-global-color-2);
    margin-bottom: 10px;
}

.login-form input, .login-vet-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--ast-global-color-3);
    box-sizing: border-box;
}

.login-form input[type="submit"] {
    border-style: solid;
    border-top-width: 2px;
    border-right-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-1);
    color: #ffffff;
    font-family: 'Source Sans 3',sans-serif;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 0.88888888888889rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-top: 15px;
    padding-right: 32px;
    padding-bottom: 15px;
    padding-left: 32px;

}

.login-form input[type="submit"]:hover {
    border-color: var(--ast-global-color-0);
    background-color: var(--ast-global-color-0);
}

@media (max-width: 768px) {
    .login-form {
        width: 100%; 
        margin-top:20px;
        
    }
}


/* Forget-password-form container */
.forgot-password-form {
    max-width: 400px;
    width:50%;
    margin: 0 auto;
    padding: 40px;
    margin-top:20px;
    margin-bottom:20px;
    background:var(--ast-global-color-4);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-webkit-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-moz-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);

  
}

.forgot-password-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--ast-global-color-2);
    margin-bottom: 10px;
}

.forgot-password-form input, .login-vet-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--ast-global-color-3);
    box-sizing: border-box;
}

.forgot-password-form input[type="submit"] {
    border-style: solid;
    border-top-width: 2px;
    border-right-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-1);
    color: #ffffff;
    font-family: 'Source Sans 3',sans-serif;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 0.88888888888889rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-top: 15px;
    padding-right: 32px;
    padding-bottom: 15px;
    padding-left: 32px;

}

.forgot-password-form input[type="submit"]:hover {
    border-color: var(--ast-global-color-0);
    background-color: var(--ast-global-color-0);
}

@media (max-width: 768px) {
    .forgot-password-form {
        width: 100%; 
        margin-top:20px;
        
    }
}

/* Registration-form container */
.registration-form {
    max-width: 400px;
    width:50%;
    margin: 0 auto;
    padding: 40px;
    margin-top:20px;
    margin-bottom:20px;
    background:var(--ast-global-color-4);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-webkit-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);
-moz-box-shadow: 8px 7px 10px 0px rgba(89,83,83,0.44);

  
}

.registration-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--ast-global-color-2);
    margin-bottom: 10px;
}

.registration-form input, .login-vet-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--ast-global-color-3);
    box-sizing: border-box;
}

.registration-form input[type="submit"] {
    border-style: solid;
    border-top-width: 2px;
    border-right-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-1);
    color: #ffffff;
    font-family: 'Source Sans 3',sans-serif;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 0.88888888888889rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-top: 15px;
    padding-right: 32px;
    padding-bottom: 15px;
    padding-left: 32px;

}

.registration-form input[type="submit"]:hover {
    border-color: var(--ast-global-color-0);
    background-color: var(--ast-global-color-0);
}

        .error { color: red !important ; }
        .success { color: green !important ; }


@media (max-width: 768px) {
    .registration-form {
        width: 100%; 
        margin-top:20px;
        
    }
}
