body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to bottom right, #6a11cb, #2575fc);
    color: #fff;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 80%;
    padding: 40px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.login-box {
    text-align: center;
    width: 100%;
}

.login-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.google-button {
    text-decoration: none;
    padding: 4px 30px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #cfcfcf
}

.login-a{
    text-decoration: none;
}

.google-img{
    width: 30px;
    margin-right: 20px;
}