/* create account table */

.form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.form-card {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 420px;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px 0;
    vertical-align: middle;
}

td:first-child {
    font-weight: 500;
    color: #555;
    width: 40%;
}
input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.2s;
}

input:focus {
    outline: none;
    border-color: #6975dd;
    box-shadow: 0 0 0 2px rgba(105, 117, 221, 0.2);
}
button {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-right: 10px;
    transition: 0.2s;
}



/* Submit b u t t o n */
button[type="submit"] {
    background: linear-gradient(to right, #6975dd, #7355b0);
    color: white;
    transition: 0.2s;
    border: 1px solid #6975dd;
}

button[type="submit"]:hover {
    background: transparent;
    color: #6975dd;
    border: 1px solid #6975dd;

}

/* Cancel button */
button[type="button"] {
    background: #eee;
    border: 1px solid #ddd;
}

button[type="button"]:hover {
    background: transparent;
    border: 1px solid #ddd;
}

.link {
    text-decoration: none;
    color: #6975dd;
    font-weight: bold;
    transition: color 0.2s;
}

.link:hover {
    color: #5b6cff;
}