/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e4e4e4;
    color: #333;
}

.container {
    text-align: center;
    padding: 40px;
    background-color: #696868;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
}

.header {
    margin-bottom: 30px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.slogan {
    font-size: 22px;
    font-weight: 500;
    color: #f5f5f5;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    flex-direction: column;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.3);
}

.btn.admin {
    background-color: #28A745;
}

.btn i {
    margin-right: 10px;
    font-size: 20px;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.btn.admin:hover {
    background-color: #218838;
}

.btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .slogan {
        font-size: 18px;
    }
    
    .btn {
        font-size: 16px;
        padding: 12px;
    }
    
    .btn i {
        font-size: 18px;
    }
}
