* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General Styles */
body {
  background-color: #f7fafc;
  font-family: Arial, sans-serif;
}

/* Container Styles */
.container {
    margin-top: 100px;
}

/* Logo Styles */
.logo-container {
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Authentication Button Styles */
.auth-button {
    background-color: #4285F4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Google Logo inside the Button */
.auth-button img {
    width: 20px;
    margin-right: 10px;
}

/* Button Hover Effect */
.auth-button:hover {
    background-color: #357AE8;
    color: #f7fafc;
}

/* Text Styling */
.auth-label {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Card Styles for Centering the Login Box */
.login-card {
    max-width: 450px;
    width: 100%;
    margin: auto;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tm-logo{
  width: 250px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 40px;
}
