    * { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fafafa;
    color: #071125;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(7,17,37,0.12);
}

h2 {
    text-align: center;
    color: #084298;
    margin-bottom: 20px;
}

/* Account type */
.account-type {
    display: flex;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.account-type label {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.account-type input { display: none; }

.account-type span {
    display: block;
    padding: 10px;
    font-weight: 600;
    color: #084298;
}

.account-type input:checked + span {
    background: #021b3fa9;
    color: #fff;
    border-radius: 8px;
}

/* Inputs */
.form-group {
    margin-bottom: 14px;
}

label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

input, select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #084298;
    font-size: 15px;
}

input:focus, select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13,110,253,0.15);
}

/* Seller animation */
#sellerFields {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

#sellerFields.active {
    max-height: 400px;
    opacity: 1;
}

/* Password */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #0d6efd;
    cursor: pointer;
}

/* Strength meter */
.strength-meter {
    width: 100%;
    height: 6px;
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
}

.strength-bar {
    height: 100%;
    width: 0%;
    background: #0d6efd;
    transition: width 0.4s ease;
}

.strength-text {
    font-size: 12px;
    margin-top: 6px;
    color: #084298;
}


button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #0d6efd;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.4s ease, background 0.3s;
}

button.move-down {
    transform: translateY(30px);
}

button:hover {
    background: #084298;
}

.info {
    font-size: 12px;
    color: #084298;
    margin-bottom: 14px;
}
.auth-footer,
.auth-links {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.auth-footer a,
.auth-links a {
  color: #3665f3;
  text-decoration: none;
  font-weight: 600;
}


.name-group {
    display: flex;
    gap: 12px;
}

.name-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

form .message-alert {
  background: #e7f1ff !important;
  color: #0d6efd !important;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: center;
}
.message-board{
    display: grid;
    justify-content: center;
}
/* .form-group.name-group {
    display: flex;
    gap: 12px;
} */


