body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    height: 100vh;
    margin: 0;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #121212;
    color: #f4f4f4;
}

.logo {
    margin-top: 97px;
    margin-bottom: 10px;
}

.container {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

#p {
    font-size: 24px;
}


.container h1 {
    color: #333;
}

.login-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 24px;
    color: white;
    background-color: #6EC1E4;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#button {
    font-size: 24px;
}

.login-button:hover {
    background-color: #333;
}

.theme-button {
    background-color: #f7f7f7;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: white;
    transition: background-color 0.3s;
}

.theme-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
}

.theme-button a img {
    margin-bottom: 5px;
}

.theme-button a span {
    color: #121212;
}

/* .theme-button:hover {
    background-color: #0056b3;
} */



/* Media Queries for Responsiveness */

/* For larger screens */
@media (min-width: 1025px) {

    .logo img{
        width: 600px; 
        height: 81px;
    }

    .container {
        margin-top: 50px;
        width: 70%;
        padding: 30px;
    }

    .container p {
        font-size: 16px;
    }

    .login-button {
        padding: 12px 24px;
        font-size: 16px;
    }

    .theme-button {
        font-size: 14px;
    }

    .theme-button a img {
        width: 40px;
        height: 40px;
    }

    .theme-button a span {
        font-size: 16px;
    }
}

/* For tablets and larger screens */
@media (min-width: 931px) and (max-width: 1024px) {
    .logo img{
        width: 600px; 
        height: 81px;
    }
    .container {
        margin-top: 50px;
        width: 70%;
        padding: 30px;
    }

    .login-button {
        padding: 12px 24px;
        font-size: 18px;
    }

    .theme-button {
        font-size: 14px;
    }

    .theme-button a img {
        width: 40px;
        height: 40px;
    }

    .theme-button a span {
        font-size: 14px;
    }
}

/* For mobile phones */
@media (max-width: 930px) {
    .logo img{
        width: 240px; 
        height: 32px;
    }

    .theme-button {
        margin-top: 120px;
        font-size: 12px;
    }

    .theme-button a img {
        width: 20px;
        height: 20px;
    }

    .theme-button a span {
        font-size: 12px;
    }

    .container {
        width: 90%;
        padding: 20px;
        margin-top: 70px;
    }

    .login-button {
        width: 50%;
        padding: 10px;
        font-size: 14px;
    }
}