#userbody {
  background-color: #1e81b0;
  height: 100vh;
}

.usercontainer {
  height: 100vh;
}

#userform {
  height: 450px;
  width: 350px;
  border: 2px solid #283747;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
}

.heading {
  text-align: center;
  font-weight: 700;
  color: #063970;
}

.error {
  color: #8b0000;
  font-size: 14px;
}

/* Modal Box */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Header */
.modal-header {
    border-bottom: 1px solid #f1f1f1;
    padding: 1rem 1.5rem;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Body */
.modal-body {
    padding: 2rem;
}

/* Heading */
.heading {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Labels */
label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
}

/* Inputs */
.form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

/* Buttons */
.btn {
    min-width: 100px;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
}

/* Error Message */
.error,
#loginError {
    text-align: center;
    font-size: 0.9rem;
    min-height: 20px;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-body {
        padding: 1.5rem;
    }

    .heading {
        font-size: 1.5rem;
    }
}

/* Remove all rounded corners */
.modal-content {
    border-radius: 0 !important;
}

/* Inputs also sharp */
.form-control {
    border-radius: 0 !important;
}

/* Buttons sharp */
.btn {
    border-radius: 0 !important;
}

/* Optional: keep clean border look */
.modal-content {
    border: 1px solid #e5e5e5;
    box-shadow: none; /* optional for flat design */
}