body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 500px;
    width: 90%;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.logo h1 {
    color: #2e8b57;
    margin: 0 0 5px 0;
    font-size: 2.5em;
    font-weight: 700;
}

.logo p {
    color: #666;
    margin: 0 0 30px 0;
    font-size: 1.1em;
}

.header h1 {
    color: #2e8b57;
    margin: 0 0 5px 0;
    font-size: 2.2em;
    font-weight: 700;
}

.header p {
    color: #666;
    margin: 0 0 30px 0;
    font-size: 1.1em;
}

h2 {
    color: #333;
    margin: 0 0 25px 0;
    font-size: 1.8em;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

input[type="email"]:focus, input[type="password"]:focus {
    outline: none;
    border-color: #2e8b57;
}

button {
    width: 100%;
    padding: 15px;
    background: #2e8b57;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background: #246b47;
}

button.danger {
    background: #e74c3c;
    margin-top: 20px;
}

button.danger:hover {
    background: #c0392b;
}

.error {
    color: #e74c3c;
    margin: 15px 0;
    padding: 10px;
    background: #fdf2f2;
    border-radius: 5px;
    border-left: 4px solid #e74c3c;
}

.success {
    color: #27ae60;
    margin: 15px 0;
    padding: 15px;
    background: #f0f9f4;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.info {
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

.info p {
    margin: 0;
    font-size: 0.95em;
}

/* User profile styles */
.user-info {
    text-align: left;
    margin: 30px 0;
}

.profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2e8b57;
    margin-bottom: 15px;
}

.user-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.detail-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-item strong {
    color: #2e8b57;
    display: block;
    margin-bottom: 5px;
}

.addresses {
    margin-top: 10px;
}

.address {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 3px solid #2e8b57;
}

.address:last-child {
    margin-bottom: 0;
}

/* Warning box styles */
.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.warning-box h3 {
    color: #856404;
    margin: 0 0 15px 0;
    font-size: 1.2em;
}

.warning-box p {
    color: #856404;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.warning-box ul {
    color: #856404;
    margin: 0;
    padding-left: 20px;
}

.warning-box li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Action buttons */
.actions {
    margin-top: 30px;
}

.logout-link {
    display: inline-block;
    margin-top: 15px;
    color: #666;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.logout-link:hover {
    color: #2e8b57;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    background: #2e8b57;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.button:hover {
    background: #246b47;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 30px 20px;
    }
    
    .logo h1, .header h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .user-details {
        padding: 15px;
    }
    
    .warning-box {
        padding: 15px;
    }
}