/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Form styles */
form {
  max-width: 400px;
  padding: 30px;
  background-color: #14b8a6;
  border-radius: 8px;
  margin: 0 auto;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.16),
    0 8px 16px rgba(0, 0, 0, 0.20),
    0 16px 32px rgba(0, 0, 0, 0.24);
}

/* Label styles */
label {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
}

/* Input styles */
input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
  box-sizing: border-box;
  font-size: 16px;
}

input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Delete Account button */
#delete-btn {
  width: 100%;
  background: #dc3545;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
}

#delete-btn:hover {
  background: #c82333;
}

#delete-btn:active {
  transform: scale(0.98);
}

/* Modal Dialog Box */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

#modalMessage {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* OK Button */
#okButton {
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
}

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

#okButton:active {
  transform: scale(0.98);
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  form {
    padding: 20px;
    max-width: 90%;
  }

  .modal-content {
    width: 90%;
    margin: 30% auto;
    padding: 15px;
  }

  input {
    font-size: 16px;
  }

  label {
    font-size: 14px;
  }
}