body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    overflow-y: auto;
}

.signup-form {
    background-color: #fff;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
    width: 100%;
    max-width: 400px;
    right: 15.5%;
    position: absolute;
    top: 1%;
}

.signup-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00b3b3;
}

.signup-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

button {
    background-color: #00b3b3; 
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10vh;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100vh; 
    max-width: 40vh; 
    display: block;
    margin: 20px auto; 
    text-align: center;
}

button:hover {
    background-color: #00b3b3; 
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
    box-shadow: 0 0 8px color #00b3b3;
}

img {
    width: 53%;
    height: 80%;
    position: absolute;
    right: 46.2%;
    top: 10%;
    filter: brightness(100%) contrast(85%) saturate(80%); 
    mask-image: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0.2) 100%); /* דהייה עדינה בצדדים */}

.home-button {
    position: fixed; 
    bottom: 20px;    
    right: 0px;     
    display: flex;   
    align-items: center;
    justify-content: center;
    width: 60px;     /* גודל הכפתור */
    height: 80px;    /* גובה הכפתור */
    color: #000000;    /* צבע האייקון */
    border-radius: 50%; /* צורה עגולה */
}

.home-button:hover {
    background-color: #ffffffab; 
}

ion-icon {
    font-size: 27px; 
}

#action {
    color: #00b3b3;
}



