/* General Reset */
.tml * {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Container */
.tml.tml-login,
.tml.tml-register,
.tml.tml-lostpassword {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Alerts */
.tml-alerts {
    margin-bottom: 20px;
    color: red;
}

/* Label */
.tml-label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold !important;
    color: #333;
}

/* Input Fields */
.tml-field-wrap {
    margin-bottom: 20px;
}

.tml-field {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.tml-field:focus {
    border-color: #0073aa;
    outline: none;
}

/* Checkbox */
.tml-rememberme-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tml-checkbox {
    width: 16px;
    height: 16px;
}

/* Submit Button */
.tml-submit-wrap {
    text-align: center;
}

.tml-button {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tml-button:hover {
    background-color: #005f8d;
}

/* Links */
.tml-links {
    margin-top: 20px;
    text-align: center;
    list-style: none !important;
    padding: 0;
}

.tml-links a {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.tml-links a:hover {
    text-decoration: underline;
}
