* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: white;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.logo-container h1 {
    color: #00695C;
    margin-bottom: 0;
    font-size: 1.8em;
    font-weight: 600;
}

h1 {
    color: #00695C;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
    font-weight: 600;
}

h2 {
    color: #00695C;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 2px solid #00ACC1;
    padding-bottom: 10px;
    font-weight: 600;
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00ACC1;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.required {
    color: #dc143c;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #00897B;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #f0f0f0 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

textarea {
    resize: vertical;
    font-family: inherit;
}

.verify-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #00897B;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 500;
}

.verify-btn:hover {
    background-color: #00695C;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 105, 92, 0.3);
}

.verify-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#emailOTPContainer,
#phoneOTPContainer {
    margin-top: 10px;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 6px;
}

#emailOTPContainer input,
#phoneOTPContainer input {
    width: 200px;
    margin-right: 10px;
    display: inline-block;
}

#emailOTPContainer button,
#phoneOTPContainer button {
    padding: 8px 16px;
    background-color: #50C878;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

#emailOTPContainer button:hover,
#phoneOTPContainer button:hover {
    background-color: #45b869;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(80, 200, 120, 0.3);
}

.otp-status {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.otp-status.success {
    color: #50C878;
    font-weight: 600;
}

.otp-status.error {
    color: #dc143c;
    font-weight: 600;
}

.otp-timer {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.otp-timer.expiring {
    color: #dc143c;
    font-weight: 600;
}

.resend-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #50C878;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 500;
}

.resend-btn:hover {
    background-color: #45b869;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(80, 200, 120, 0.3);
}

.resend-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.error-message {
    display: block;
    color: #dc143c;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
    font-weight: 500;
}

.info-text {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
}

.status-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

.status-message.success {
    background-color: #d4f4dd;
    color: #0d5c2e;
    border: 1px solid #50C878;
    display: block;
    border-left: 4px solid #50C878;
}

.status-message.error {
    background-color: #ffe6e6;
    color: #8b0000;
    border: 1px solid #dc143c;
    display: block;
    border-left: 4px solid #dc143c;
}

.status-message.info {
    background-color: #e0f2f1;
    color: #00695C;
    border: 1px solid #00897B;
    display: block;
    border-left: 4px solid #00897B;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00695C 0%, #00897B 50%, #00ACC1 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 172, 193, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 105, 92, 0.4);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.page-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    text-align: center;
    color: #555;
    font-size: 14px;
}

.footer-links {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.page-footer a {
    color: #00897B;
    text-decoration: none;
    font-weight: 600;
}

.page-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    #emailOTPContainer input,
    #phoneOTPContainer input {
        width: 100%;
        margin-bottom: 10px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: white;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.logo-container h1 {
    color: #00695C;
    margin-bottom: 0;
    font-size: 1.8em;
    font-weight: 600;
}

h1 {
    color: #00695C;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
    font-weight: 600;
}

h2 {
    color: #00695C;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 2px solid #00ACC1;
    padding-bottom: 10px;
    font-weight: 600;
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00ACC1;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.required {
    color: #dc143c;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #00897B;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #f0f0f0 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

textarea {
    resize: vertical;
    font-family: inherit;
}

.verify-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #00897B;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 500;
}

.verify-btn:hover {
    background-color: #00695C;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 105, 92, 0.3);
}

.verify-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#emailOTPContainer,
#phoneOTPContainer {
    margin-top: 10px;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 6px;
}

#emailOTPContainer input,
#phoneOTPContainer input {
    width: 200px;
    margin-right: 10px;
    display: inline-block;
}

#emailOTPContainer button,
#phoneOTPContainer button {
    padding: 8px 16px;
    background-color: #50C878;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

#emailOTPContainer button:hover,
#phoneOTPContainer button:hover {
    background-color: #45b869;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(80, 200, 120, 0.3);
}

.otp-status {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.otp-status.success {
    color: #50C878;
    font-weight: 600;
}

.otp-status.error {
    color: #dc143c;
    font-weight: 600;
}

.otp-timer {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.otp-timer.expiring {
    color: #dc143c;
    font-weight: 600;
}

.resend-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #50C878;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 500;
}

.resend-btn:hover {
    background-color: #45b869;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(80, 200, 120, 0.3);
}

.resend-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.error-message {
    display: block;
    color: #dc143c;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
    font-weight: 500;
}

.info-text {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
}

.status-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

.status-message.success {
    background-color: #d4f4dd;
    color: #0d5c2e;
    border: 1px solid #50C878;
    display: block;
    border-left: 4px solid #50C878;
}

.status-message.error {
    background-color: #ffe6e6;
    color: #8b0000;
    border: 1px solid #dc143c;
    display: block;
    border-left: 4px solid #dc143c;
}

.status-message.info {
    background-color: #e0f2f1;
    color: #00695C;
    border: 1px solid #00897B;
    display: block;
    border-left: 4px solid #00897B;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00695C 0%, #00897B 50%, #00ACC1 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 172, 193, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 105, 92, 0.4);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.page-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    text-align: center;
    color: #555;
    font-size: 14px;
}

.footer-links {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.page-footer a {
    color: #00897B;
    text-decoration: none;
    font-weight: 600;
}

.page-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    #emailOTPContainer input,
    #phoneOTPContainer input {
        width: 100%;
        margin-bottom: 10px;
    }
}

