
body {
    font-family: Arial, sans-serif;
}

.cursorNotAllowed {
    cursor: not-allowed;
}

/* Styles for disabled input fields */
.input-disable {
    background-color: #f5f5f5 !important; /* Light grey background */
    color: #aaa !important; /* Greyed-out text color */
    cursor: not-allowed !important; /* Change cursor to not-allowed */
    border: 1px solid #ddd !important; /* Subtle border color */
    opacity: 0.6; /* Reduce opacity for disabled effect */
}

/* If you want to disable focus styles for disabled inputs */
input[disabled]:focus {
    outline: none;
    border-color: #ddd !important;
    box-shadow: none;
}

.modalAuth {
    z-index: 100;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
}

.modal-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
}

.modalAuth input {
    width: 90%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.modalAuth button {
    border-radius: 8px;
    padding: 12px 18px;
    background: #5D62FF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.modalAuth button:hover {
    background: #4a54e1;
}

h1 {
    font-family: "Inter Tight", sans-serif;
}

.g_id_signin {
    display: none;
}
