/* Verification Pages Styles */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 150px;
    height: auto;
}

.verify-container {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.back-link {
    color: #666;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.verify-heading {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.verify-subtext {
    color: #666;
    margin-bottom: 2rem;
}

.verify-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Dropdown styling */
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

select option {
    padding: 8px;
}

/* Validation message for select elements */
.validation-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Show validation message when needed */
.validation-message.show {
    display: block;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #00796B;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover {
    background: #00695C;
}

/* Button primary style */
.button-primary {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #00796B;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.button-primary:hover {
    background: #00695C;
}

.button-primary:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    color: white;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer a {
    color: white;
    text-decoration: underline;
}

.trademark-info {
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Verification Code specific styles */
.code-input {
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    text-align: center;
    padding: 0.75rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.code-input:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.1);
}

.verification-message {
    text-align: center;
    color: #666;
    margin: 20px 0;
}

.resend-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #003366;
    text-decoration: none;
    font-size: 0.9rem;
}

.resend-link:hover {
    text-decoration: underline;
}

/* Verification Card Styles */
.verify-card {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.verify-card h1 {
    color: #00796B;
    margin-bottom: 0.5rem;
    text-align: center;
}

.verify-card .subtitle {
    color: #757575;
    font-weight: normal;
    margin-top: 0;
    text-align: center;
    margin-bottom: 2rem;
}

.verify-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: #00796B;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 121, 107, 0.25);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.btn-primary {
    display: inline-block;
    background-color: #00796B;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #00695C;
}

.btn-link {
    display: inline-block;
    color: #00796B;
    text-decoration: none;
    margin-top: 0.5rem;
}

.btn-link:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #00796B;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.required {
    color: #dc3545;
}

.verification-info {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.email-display {
    font-weight: bold;
    font-size: 1.1rem;
    color: #00796B;
    margin: 0.5rem 0;
}

.verification-footer {
    text-align: center;
    margin-top: 2rem;
}

.error-message {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    display: none;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    display: none;
}

.loading-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.readonly-input {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .verify-card {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Add these styles to match index.html */
.header {
    padding: 2rem;
    text-align: center;
    background-color: transparent;
}

/* Add global heading styles */
h1, h2, h3, h4, h5, h6 {
    color: #00796B; /* Teal color that matches the success icon */
    margin-bottom: 15px;
    text-align: center;
}

h1 {
    font-size: 28px;
    font-weight: 600;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

.subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
} 