body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f8f9fa; /* Procore-like background */
}
.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 2rem 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}
.logo {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -50px; /* Position the logo above the container */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.logo img {
    width: 70%;
    height: 70%;
    animation: rotate 1s ease-in-out forwards; /* Apply rotation animation */
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
p {
    color: #555;
}
.btn-lg {
    font-size: var(--font-size-base);
    padding: 15px 20px;
    border: none;
    background-color: rgb(255, 81, 0);
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px;
    text-decoration: none;
    align-self: center; /* Center the button horizontally */
}
.btn-lg:hover {
    background-color: rgb(204, 65, 0);
}