
img#techchain-logo {
    width: 360px;
    filter: drop-shadow(0px 0px 25px rgba(255, 255, 255, 0.8))
}

.logo-wrapper {
  animation: rotate 4s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#techchain-logo:hover {
  transform: scale(1.05);
}

#techchain-logo:active {
  transform: scale(1.12) rotate(-1deg);
}


h1 {
    font-family: "Goldman-Regular";
    font-size: 50px;
}

h2 {
    font-family: "Goldman-Bold";
    font-size: 40px;
}

h3 {
    font-family: "Newsreader-Variable";
    font-size: 36px;
}

.register {
    font-family: "Newsreader-Variable";
    font-size: 22px;
    margin-top: 40px;
}

p > a {
    font-weight: bold;
}

.btn-primary {
    background-color: black;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 50px;
    margin-bottom: 100px;
}

.content-container {
    max-width: 700px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    justify-content: space-between;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.btn-primary {
    max-width: 100px;
}

.form-label {
    font-weight: bold;
}

.m-0 {
    list-style: none;
}

.m-0 > li::marker {
    color: white;
}

@media (min-width: 320px) and (max-width: 768px) {
    #main-header {
        font-size: 18px;
    }

    img#techchain-logo {
        width: 200px;
    }

    h1.title {
        text-align: center;
        width: 100%;
        font-size: 40px;
        margin-bottom: 0px;
        margin-top: 30px;
    }

    h2 {
        font-size: 30px;
        text-align: center;
        margin: 20px 0px 40px 0px;
    }

    .main-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;

        img {
            width: 300px;
            height: auto;
        }
    }
}

@media (min-width: 768px) {
    .title {
        text-align: center;
        font-size: 50px;
        margin-bottom: 30px;
    }

    h2 {
        text-align: start;
    }

    .main-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;

        img {
            width: 300px;
            height: auto;
        }
    }
}

@media (min-width: 768px) and (max-width: 1025px) {
    .logo-wrapper {
        margin-bottom: 30px;
    }

    img#techchain-logo {
        width: 250px;
    }
}

@media (min-width: 1025px) {
    .main-container {
        display: flex;
        flex-direction: row;
        gap: 100px;
        padding: 20px;

        img {
            width: 300px;
            height: auto;
        }
    }
    
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    padding: 10px 14px;

    border: 1px solid #dadce0;
    border-radius: 6px;

    background-color: #ffffff;
    color: #3c4043;
    font-weight: 500;
    font-size: 0.95rem;

    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;

    text-decoration: none;
}

.google-login-btn:hover {
    background-color: #f7f7f7;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.google-login-btn img {
    width: 20px;
    height: 20px;
}

.separator-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.separator-line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

.separator-text {
    font-size: 0.85rem;
    color: #666;
}