/* Page spacing */
.wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Card container */
.col-md-6 {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Title */
h2 {
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

/* Labels */
form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

/* Inputs */
form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    transition: 0.2s ease;
    font-size: 0.95rem;
}

/* Focus state */
form input:focus {
    border-color: lightgrey;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.15);
    outline: none;
}

/* Hide default help text */
.helptext {
    display: none;
}

/* Error messages */
.form-error {
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

/* Button */
.btn-primary {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    background-color: royalblue;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: none;
    transition: all 0.25s ease;
    margin-top: 1.5rem;
}

.btn-primary:hover {
    background-color: #3E63D3;
    transform: translateY(-1px);
}

/* Bottom text */
.mt-3 {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.mt-3 a {
    font-weight: 500;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease;
}

.mt-3 a:hover {
    border-bottom: 1px solid #000;
}