/* style/userjoin.css - Styles for user registration page */
.container {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 10px;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #2a5298;
}

label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #555454;; /* or match your theme */
    font-size: 14px;
    text-align: left;
}

.privacy-box {
    border: 1px solid #ccc;
    background: #f8f8f8;
    height: 100px; /* ↓ reduced from 150px */
    overflow-y: auto;
    overflow-x: auto;
    font-size: 13px;
    text-align: left;
    padding: 10px;
    margin: 10px 0;
    color: #333;
    white-space: pre-wrap;
    line-height: 1.4;
}

button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
    color: #666;
    border: none;
}

.modal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    width: 300px;
}

.modal-content button {
    background-color: #1e3c72;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #2a5298;
}




