/* Reset default browser styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Set the background color to your company color */
body {
    background-color: #1A73E8; /* Replace with your company's hex color code */
    font-family: Manrope, Arial, sans-serif;
    color: #FFFFFF; /* Text color for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container styling */
.container {
    text-align: center;
    padding: 20px;
}

/* Logo styling */
.logo {
    width: 100px;
    height: 100px;
}

/* Heading styling */
h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Button styling */
.login-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFFFFF; /* Button background color */
    color: #1A73E8; /* Button text color */
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.login-button:hover {
    background-color: #E8F0FE;
}
