#primary-delete-account {
    width: 100%;
    padding: 20px;
    padding-top: 80px;
    box-sizing: border-box;
}

.delete-entry-description {
    font-family: 'Roboto', sans-serif;
	font-size: 18px;
	margin-left: 10px;
	margin-right: 10px;
}

.recaptcha-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
		margin-top: 20px;
}
    
.g-recaptcha {
        transform-origin: center;
}

.delete-account-recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.g-recaptcha {
    transform-origin: center;
}

.delete-entry-header .delete-entry-title {
    font-size: 2em;
    text-align: left;
    margin-bottom: 30px;
	margin-left: 5px;
}

#delete-account-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

#delete-account-form input[type="text"],
#delete-account-form input[type="email"],
#delete-account-form textarea,
#delete-account-form .submit-button {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
}

#delete-account-form textarea {
    resize: vertical;
}

#delete-account-form .submit-button {
    background-color: #46A049;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

#delete-account-form .submit-button:hover {
    background-color: #3e8e41;
}

#delete-account-form input::placeholder,
#delete-account-form textarea::placeholder {
    color: #888;
}

#delete-account-form input[type="text"]:focus,
#delete-account-form input[type="email"]:focus,
#delete-account-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
}


/* Mobil cihazlar için medya sorguları */
@media (max-width: 767px) {
	
    body, html {
        overflow-x: hidden;
    }

    .delete-account-recaptcha-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
	
	.delete-entry-description {
		font-family: 'Roboto', sans-serif;
		font-size: 18px;
		margin-left: 5px;
		margin-right: 15px;
	}

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }

    #primary-delete-account {
        padding: 10px;
        padding-top: 80px;
    }

    .delete-entry-header .delete-entry-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    #delete-account-form {
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    #delete-account-form input[type="text"],
    #delete-account-form input[type="email"],
    #delete-account-form textarea,
    #delete-account-form .submit-button {
        width: calc(100% - 20px);
        padding: 12px;
        margin-bottom: 10px;
        font-size: 0.9em;
        box-sizing: border-box;
    }

    #delete-account-form .submit-button {
        font-size: 0.9em;
    }
}

#confirmation {
    opacity: 0;
    position: absolute;
    margin-left: -9999px; /* Ekran dışına taşı */
    height: 0;
    width: 0;
    z-index: -1; /* Arka plana al */
}


@media (max-width: 480px) {
    .delete-entry-header .delete-entry-title {
        font-size: 1.25em;
    }

    #delete-account-form input[type="text"],
    #delete-account-form input[type="email"],
    #delete-account-form textarea,
    #delete-account-form .submit-button {
        font-size: 0.8em;
    }
}
