body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f0f2f5; /* Light gray background */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.welcome-container {
    text-align: center;
    padding: 30px;
    background-color: #ffffff; /* White background for the container */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    border: 1px solid #e0e0e0; /* Light gray border */
}

.logo {
    width: 150px; /* Adjust as needed */
    height: auto;
    margin-bottom: 20px;
    border: 2px solid #1A73E8; /* Blue border around the logo */
    border-radius: 8px; /* Rounded corners for the border */
    padding: 5px; /* Padding between the logo and the border */
    background-color: #ffffff; /* Ensure background is white for logo */
}

h1 {
    color: #333333; /* Darker text for the heading */
    margin-bottom: 10px;
}

.login-button {
    display: inline-block;
    background-color: #1A73E8; /* Primary blue shade */
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    border: 2px solid #1A73E8; /* Blue border around the button */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.login-button:hover {
    background-color: #1558B0; /* Darker blue on hover */
    border-color: #1558B0; /* Darker blue border on hover */
}
