/* General Styles */
body {
    font-family: Fira Sans, condensed;
}

/* Style for the delete account section */
form h2 {
    color: black;
    font-size: 24px;
    font-weight: 400;
}

/* Style for the delete account description */
form p {
    color: #333;
    font-size: 16px;
}

/* Style for the delete account button */
form.delete-account-form button.delete-account-button {
    background-color: #1fb25a ; /* Your main color */
    color: white ;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
	font-weight: 300;
}

/* Hover effect */
form.delete-account-form button.delete-account-button:hover {
    background-color: #159d4b ; /* Darker shade on hover */
	color: white ;
}

/* Adjust spacing */
.delete-account-form {
    margin-top: 100px;
	margin-bottom: 30px;
}