.mk-simple-alert-box {
	padding: 10px 15px;
	margin: 10px 0;
	border-left: 5px solid;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .mk-simple-alert-box-info {
	background-color: #bfdcef;
	color: #457389;
	border-color: #31708f;
  }
  
  .mk-simple-alert-box-warning {
	background-color: #f5eecb;
	color: #8a6d3b;
	border-color: #b88d42;
  }
  
  .mk-simple-alert-box-success {
	background-color: #d1f2c4;
	color: #3c763d;
	border-color: #53a354;
  }
  
.mk-simple-alert-box-error {
	background-color: #f0cccc;
	color: #a94442;
	border-color: #db5552;
}




/* Modern and responsive styles for the email verification page */
.verify-email-page {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 24px;
}

p strong {
    color: #1a1a1a;
    font-weight: 500;
}

input{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    width: 100%;
}

form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

button[type="submit"] {
    background-color: #325A89;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #5080b8;
    transform: translateY(-2px);
}

button[type="submit"]:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 480px) {
    .verify-email-page {
        margin: 20px;
        padding: 16px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    button[type="submit"] {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}