
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    background-color: #e0f2f1;
}

.bg-gradient {
    background: radial-gradient(circle at 20% 20%, #00bfa5 0%, #00695c 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 360px;
    width: 100%;
}

.icon-wrapper {
    background: #e0f2f1;
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    margin-bottom: 10px;
    color: #004d40;
}

.subtitle {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: 500;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

button {
    width: 100%;
    padding: 12px;
    background: #00796b;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #004d40;
}

.footer-text {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

.admin-link {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #00796b;
    text-decoration: none;
}
.card-link {
    text-decoration: none;
    display: block;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #004d40;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card-info h2 {
    font-size: 16px;
    margin: 0 0 5px 0;
}

.card-info p {
    font-size: 13px;
    margin: 0;
    color: #555;
}

.card-action {
    font-size: 14px;
    font-weight: 600;
}
.logout-icon {
  width: 2px;
  height: 2px;
  vertical-align: middle;
  margin-right: 2px;
}

