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

.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h1 {
    color: #1877f2;
    margin-bottom: 30px;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.signin-btn {
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    color: #4d5fc5;
    background: linear-gradient(90deg, #1a75aa, #1ea2ce, #72b7df);
    border-radius: 15px;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.signin-btn::before {
    box-shadow: 0 0 30px rgba(9, 126, 120, 0.6);
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(19, 231, 54, 0.212), rgba(81, 219, 81, 0.2));
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.signin-btn:hover::before {
    left: 100%;
}

.signin-btn {
    background-color: #42b72a;
    color: white;
}

.signin-link {
    color: #1877f2;
    text-decoration: none;
}
.google-auth {
    background-color: #4285F4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .discord-auth {
    background-color: #7289DA;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .google-auth img, .discord-auth img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  