/* Custom styles for forms */

.form-container {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px; /* modern rounded corners */
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.form-group {
    margin-bottom: 15px;
    padding-right: 20px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    display: block;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #f9fafb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

/* FOR FORM LOGIN BUTTONS  */
.link-spacing {
    margin-right: 1rem;
}

/* AG customer homepage messaging form css code */

.agform-card-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 12px;
}

.agform-success-message {
    background-color: #dcfce7;
    color: #166534;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.agform-cardform-container {
    text-align: center;
}

.agform-card-content {
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.agform-form-container {
    margin-top: 20px;
}

.agform-form-group {
    margin-bottom: 15px;
}

.agform-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #374151;
}

.agform-form-group input,
.agform-form-group textarea {
    width: 100%;
    max-width: 80%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f9fafb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.agform-form-group input:focus,
.agform-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
}

.agform-btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.agform-btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.agform-btn-show {
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.agform-btn-show:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.agform-message-form {
    margin-top: 20px;
}
