.am-1446-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
}
.am-1446-title {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    text-align: center;
}
.am-1446-form .am-1446-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 20px;
}
.am-1446-form .am-1446-col {
    flex: 1;
    min-width: 250px;
}
.am-1446-form .am-1446-col-full {
    flex: 100%;
}
.am-1446-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}
.am-1446-form input[type="text"],
.am-1446-form input[type="number"],
.am-1446-form input[type="tel"],
.am-1446-form input[type="email"],
.am-1446-form select,
.am-1446-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.am-1446-form input:focus,
.am-1446-form select:focus,
.am-1446-form textarea:focus {
    border-color: #0073aa;
    outline: none;
}
.am-1446-submit {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
}
.am-1446-submit:hover {
    opacity: 0.9;
}
.am-1446-msg {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: 500;
}
.am-1446-msg.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
.am-1446-msg.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}
.am-1446-loading {
    opacity: 0.7;
    pointer-events: none;
}