/*CSS FOR REGISTER.PHP way ../../../app/auth/register.php*/
body {
     background-color: #fafafa; /* Background similar to Instagram */
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container {
     width: 100%;
     max-width: 100%;
     padding: 0 15px;
     margin: 0 auto;
     margin-top: 50px;
     margin-bottom: 50px;
     box-shadow: none;
}

.card {
     max-width: 450px;
     margin-top: 20px;
     background: #fff;
     border-radius: 5px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     border: none; /* Remove the border */
     margin: auto;
}

input[type="text"],
input[type="email"],
input[type="password"],
select.form-control {
     background: #fff;
     border: 1px solid #dbdbdb;
     border-radius: 3px;
     padding: 9px;
     font-size: 14px;
}

input::placeholder {
     color: #999;
}

.btn-primary {
     background-color: #0095f6;
     border: none;
     border-radius: 4px;
}

.btn-primary:hover {
     background-color: #0077cc;
}

.card-footer {
     background: none;
     border-top: none;
}

.is-invalid {
     border-color: #dc3545; /* Red color to highlight error */
}

@media (max-width: 750px) {
     body {
         background-color: #fff;
     }

     .container {
         box-shadow: none;
     }

     .mb-3 {
         max-width: 80%;
         margin: auto;
     }

     .card {
         box-shadow: none;
         width: 100%;
         max-width: 100%;
     }
}