﻿/* Physician Self registration */
button#openSignup {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    background-color: #2962ff;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.modal-signup {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    /*   display: flex; */
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal-content-signup {
    background-color: #fff;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    flex-wrap: wrap;
    margin: auto;
}

.form-side {
    flex: 1;
    padding: 30px;
    min-width: 400px;
}

    .form-side h2 {
        margin-bottom: 20px;
    }

.form-group-sign {
    position: relative;
    margin-bottom: 15px;
    text-align: left;
}

    .form-group-sign i {
        position: absolute;
        left: 10px;
        top: 12px;
        color: #888;
    }

    .form-group-sign input {
        width: 100%;
        padding: 10px 10px 10px 35px;
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

/* .error {
        font-size: 12px;
        color: red;
        margin-top: 4px;
    }
 */
.checkbox {
    margin: 10px 0;
    text-align: left;
}

    .checkbox input {
        margin-right: 5px;
    }

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .buttons button {
        flex: 1;
        padding: 10px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
    }

.register {
    background: #2962ff;
    color: #fff;
}

.cancel {
    background: #e0e0e0;
    color: #333;
}

.illustration-side {
    flex: 0 0 220px;
    background: #f1f3f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .illustration-side img.logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .illustration-side img.illustration {
        width: 140px;
    }

.success-message {
    color: green;
    margin-top: 10px;
    font-weight: 500;
    display: none;
}

/* Terms and Conditions Modal */
.terms-modal-content {
    background: #fff;
    border-radius: 8px;
    max-width: 650px;
    width: 100%;
    padding: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .terms-header h2 {
        font-size: 1.25rem;
        margin: 0;
    }

.close-terms {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.terms-body {
    text-align: justify;
    padding: 5px 5px 5px 5px;
    font-size: 14px;
    line-height: 1.75;
    max-height: 60vh;
    overflow-y: auto;
}

.term-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* registration modal */
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    padding: 20px;
}

#termsModal {
    z-index: 10000 !important;
}

.resend-verification-link{
    display:none;
}
.resend-link {
    color: #007BFF;
    text-decoration: underline;
    cursor:pointer;
}
.link-p {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}