/**
 * CSS cho form đăng ký học của IMTA Academy
 */
 
.imta-registration-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    color: white;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iIzA2NTRiNSI+PHBhdGggZD0iTTEyODAgMy40QzEwNTAuNTkgMTggMTAxOS40IDg0Ljg5IDczNC40MiA4NC44OWMtMzIwIDAtMzIwIDg0LjMtNjQwIDg0LjMtNTQuODItLjA0LTk0LjItMy43Mi0xMjggMy40VjE0MEgxMjgweiIvPjwvZz48L3N2Zz4=');
    background-size: 100% 10%;
    background-repeat: no-repeat;
    background-position: bottom;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: rgba(75, 77, 76, 0.31);
    border: dashed 2px #ffffff;
}

.imta-form-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    line-height: 1.5;
}

.imta-form-group {
    margin-bottom: 15px;
}

.imta-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: white;
}

.imta-form-control {
    width: 100%;
    padding: 12px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color:#9b5705;
	height: 42px;
   
}
.imta-form-control option{
     color:#9b5705;
}
.imta-form-control:focus {
    border-color: #0654b5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(6, 84, 181, 0.2);
}

.imta-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.imta-btn-primary {
    background: linear-gradient(135deg, #ef5350 0%, #f39c12 100%);
    color: white;
}

.imta-btn-primary:hover {
    background: linear-gradient(135deg, #f39c12 0%, #ef5350 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
tr:nth-child(even) {
  background-color: #eee;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .imta-registration-form {
        max-width: 100%;
        margin: 0;
        padding: 15px;
    }
    
    .imta-form-title {
        font-size: 1.3rem;
    }
    
    .imta-form-control,
    .imta-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Status messages */
.imta-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.imta-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.imta-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
} 