html, body {
    height: 100%;
    margin: 0;
	padding-top: 20px;
    overflow-x: hidden; 
    overflow-y: auto; 
}

    .cause-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .cause-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        cursor: pointer;
    }

    .cause-item img {
    width: 64px;
    height: 64px;
    border-radius: 50%; 
}

    .cause-item input[type="radio"] {
        display: none;
    }

    .cause-item input[type="radio"]:checked + img {
    border: 2px solid #2196F3;
    border-radius: 50%; 
}
    .cause-item:hover .cause-description {
        display: block;
    }

    .cause-description {
        display: none;
        position: absolute;
        top: 75px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
        background-color: #f9f9f9;
        border: 1px solid #ccc;
        border-radius: 5px;
        text-align: center;
        width: 150px;
        font-size: 12px;
        z-index: 10;
    }

    .register-container {
    max-width: 800px;
    margin: 20px auto; 
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: auto; 
    margin-top:50px;
}

    .register-container h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .register-container form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .register-container label {
        font-weight: bold;
    }

    .register-container select, .register-container input {
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .register-container button {
        padding: 10px;
        font-size: 16px;
        background-color: #04acbb;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    .register-container button:hover {
        background-color: #f2d70f;
    }

    .error-message {
        color: red;
        text-align: center;
    }
    
    .password-container {
        display: flex;
        align-items: center;
    }
    .password-container input {
        width: 60%;
    }
    .toggle-password-text {
        margin-left: 10px;
        color: #4CAF50;
        cursor: pointer;
        font-size: 14px;
        text-decoration: underline;
    }
    .toggle-password-text:hover {
        color: #45a049;
    }
