/* password_reset.css */
.resend_main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width:100%;
}


.resend-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.resend-container form {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #45a049;
}
.alert {
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

/* Different styles based on the message tags */
.alert.info {
    background-color: #d9edf7;
    color: #31708f;
    border: 1px solid #bce8f1;
}

.alert.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.alert.warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
    border: 1px solid #faebcc;
}

.alert.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}
/* Responsive adjustments */
@media (max-width: 480px) {
    .resend-container {
        padding: 10px;
    }

    .resend-container h2 {
        font-size: 1.5em;
    }

    .resend-container form {
        padding: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .form-group input,
    button[type="submit"] {
        padding: 8px;
        font-size: 0.9em;
    }
}
