body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #3494e6, #ec6ead);
    color: #fff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.card {
    background: linear-gradient(45deg, #ffffff, #f2f2f2);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
    background-color: #f8f8f8;
}

.btn {
    background: linear-gradient(45deg, #f9a825, #f57f17);
    color: #fff;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: linear-gradient(45deg, #f57f17, #f9a825);
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

h3, h4 {
    color: #555;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
    color:black;
}

.approved {
    color: #4caf50;
}

.rejected {
    color: #e57373;
}

.pending {
    color: #ffc107;
}

.not-found {
    color: #ef5350;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
