body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 20px;
    color: #333;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
}

button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.header {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
    color: white;
    margin: 15px;
}

.logo {
    width: 100px !important;
    border-radius: 50%; 
    object-fit: cover;
    border: 3px solid #3498db;
    margin-bottom: 10px;
}

div.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px; 
    padding: 20px;
    margin: 15px auto;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

a, button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    margin: 5px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

a:hover, button:hover {
    background-color: #2980b9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none; 
}


form div {
    margin-bottom: 20px;
    padding: 0 10px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #5d4037;
   
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; 
}

input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}