@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Host Grotesk"
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#square{
    position: fixed;

    width: 400px;
    height: 1000px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255);
}

#logo {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 15px;
    left: 160px;
    z-index: 4;
}

.master-text {
    font-family: 'Montserrat';
    font-style: italic;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #036cde, #96ceb4, #ffeaa7);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.form-field {
    margin-top: 2rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: none;
    border-radius: 20px;
    color: rgb(122, 122, 122);
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: background-color 0.3s ease;
}

.form-field::placeholder {
    color: #292929;
}

.form-field:focus {
    background-color: #ffffff;
}

.login-button {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #3b82f6;
    border: none;
    border-radius: 12px;
    color: white;
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 5rem;
}

.login-button:hover {
    background-color: #2563eb;
}

.login-button:active {
    background-color: #1d4ed8;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

p{
    color:#fff;
    font-size: 0.9rem;
    font-weight: 450;
}

nav, .hero-footer{
    position: absolute;
    left: 50rem;
    width: 670px;
    padding: 2rem;
    display: flex;
    justify-content: justify;
    align-items: right;
    z-index: 2;

}

.nav-items{
    display: flex;
    gap: 4rem;

}

nav .logo p{
    font-weight: 700;
}

.hero-footer{
    bottom: 0;
}

section{
    position: relative;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;

}

.gradient-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1000px) {
    nav{
        flex-direction: column;
        gap: 2rem;
    }
}