/*
 Theme Name:   Twenty Twenty-Five Child
 Template:     twentytwentyfive
 version:   1.0.1
*/


.register-wrapper {
    width: fit-content;
    margin: auto;
}

.register-wrapper input{
    width: 250px;
    margin: 10px 0 0 0;
    padding: 10px;
}
.register-wrapper button{
    cursor: pointer;
    width: 100%;
    max-width: 350px;
    margin: 10px 0 0 0;
    padding: 10px;

}
.register-wrapper input:first-child{
    margin: 0;
}
.error {
    color: red;
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

input.error-border {
    border: 1px solid red;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.pdf-preview {
    margin-top: 0px;
}

.pdf-actions {
    margin-top: 15px;
    display: flex;
    gap: 40px;
}

.btn {
    display: flex;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: 0.3s ease;
    height: fit-content;
    border: none;
    cursor: pointer;
}

.view-btn {
    background: #0073aa;
}

.download-btn,
.verify-btn {
    background: #28a745;
}
.submit-nda{
    background-color: #87ceeb;
}

.btn:hover {
    opacity: 0.85;
}

.nda-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 999;
}

.nda-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    display: none;
    z-index: 1000;
    transition: 0.3s ease;
}

.nda-popup.active {
    transform: translate(-50%, -50%) scale(1);
}

.popup-content h3 {
    margin-bottom: 15px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.form-field {
    margin-bottom: 15px;
}

.error {
    color: red;
    font-size: 12px;
}

.btn {
    background: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
#registerMessage{
    margin-top: 20px;
    text-align: center;
}


.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    display: flex;
    align-items: center;
}


.toggle-password svg {
    cursor: pointer;
    color: #fff;
    opacity: 0.8;
    transition: 0.3s ease;
}
.toggle-password svg#eyeClose {
    display: none;
}

.toggle-password svg:hover {
    opacity: 1;
}
