﻿body {
    background-color: #e6e9e6;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    width: 100%;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.logo img {
    width: 50%;
    height: auto;
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.google-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #30a95e;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.main-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #031F34;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-align: right;
    padding: 8px;
    box-sizing: border-box;
}
.main-footer a {
    color: white;
    text-decoration: none;
}
