body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

.toolbar {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.content {
    height: calc(100vh - 48px);
    display: flex;
    align-items: center;
}

.report-content {
    width: 100%;
    height: calc(100vh - 48px);
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 90%;
    text-align: center;
    width: 400px;
    max-width: 70vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    max-height: 70vh;
}

h2 {
    margin-bottom: 25px;
    color: #333;
}

.message {
    font-size: 18px;
    margin-bottom: 15px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}
input:focus {
    border-color: #4285F4;
    outline: none;
}
    button {
        width: 80%;
        padding: 12px;
        margin-top: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }
.google-login {
    background-color: #db4437;
    color: white;
}
.google-login:hover {
    background-color: #c13529;
}

.apple-login {
    background-color: #000;
    color: white;
    margin-top: 10px;
}
.apple-login:hover {
    background-color: #444;
}

.report-button {
    background-color: #4CAF50;
    color: white;
    margin-top: 10px;
}
.report-button:hover {
    background-color: green;
}


.icon {
    margin-right: 10px;
}
.alternative-login {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}
.alternative-login span {
    margin: 0 5px;
}


.logout-button {
    width: 80px;
    background-color: #4CAF50;
    color: white;
    margin-top: 0px;
}
.logout-button:hover {
    background-color: red;
}

.logo {
    height: 32px;
}

.avatar {
    height: 32px;
    border-radius: 50%;
}

.horizontal-div {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-around;
}
