body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #3498db, #8e44ad);
}

#customContextMenu {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 0;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#customContextMenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#customContextMenu ul li {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s ease;
}

#customContextMenu ul li:hover {
    background-color: #f0f0f0;
}

#customContextMenu ul li a {
    color: inherit;
    text-decoration: none;
}

#customContextMenu ul li a:hover {
    text-decoration: underline;
}


.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    overflow: hidden;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: calc(100% - 40px);
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 25px;
    box-sizing: border-box;
    outline: none;
    background-color: #f2f2f2;
}

button {
    width: calc(100% - 40px);
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

.form-switch {
    margin-top: 10px;
}

.separator {
    margin: 20px 0;
    font-size: 18px;
    color: #666;
}

.form-switch a {
    color: #3498db;
    text-decoration: none;
}

.form-switch a:hover {
    text-decoration: underline;
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: .2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

#loginForma {
    display: none;
}

#passErrorMessage,
#emailErrorMessage,
#nameErrorMessage,
#errorMessage {
    color: red;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .container {
        width: 75%;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    button {
        width: calc(100% - 30px);
    }
}



