@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* { margin: 0; padding: 0; font-family: 'PT Sans'; font-size: 17px; }

:root {
    --color0: #FF9F00;
    --color1: #FFB200;
    --color2: #2F63D9;
    --color3: #3C81F6;

    --color4: #F2F2F2;
    --color5: #0D0D0D;
    --color6: #e4e4e4;
}

body {
    background-image: linear-gradient(90deg, var(--color0) 25%, var(--color1) 25%);
    background-size: cover;
}

.title {
    font-size: 3rem;
    color: white;
}

.subtitle {
    font-size: 1.5rem;
    color: #d4d4d4;
    font-weight: normal;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px black;
}

.title-wrapper {
    margin-bottom: 50px;
    padding: 10px;
    text-align: left;
}

.login-content {
    background-color: var(--color2);
    color: black;
    padding: 15px;
    height: 500px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 35%;
    height: 570px;
}

.input-wrappers {
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-wrappers input {
    min-width: 27vw;
    padding: 7px;
    margin: 3px;
}

.input-wrappers input:not(input[type="button"]) {
    font-size: 1.2rem;
    color: black;
}

.input-wrappers input:focus {
    outline: none;
}

.input-wrappers label p {
    color: #ececec;
    font-weight: 500;
    font-size: 1.2rem;
}

.input-wrappers {
    display: flex;
    flex-direction: column;
}

.input-wrappers [data-button="login"],
.input-wrappers [data-button="register"] {
    background-color: white;
    color: var(--color3);
    text-align: center;
    border: none;
    min-width: 15vw;
    margin: 35px 0;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 200ms;
    width: 70%;
}

.input-wrappers [data-button="register"] {
    margin: 10px;
}

.input-wrappers [data-button="login"]:hover,
.input-wrappers [data-button="register"]:hover {
    background-color: #e9e9e9;
    cursor: pointer;
}

.login-content [data-link="create-new-account"] {
    text-decoration: none;
    color: #FF9F00;
}

.login-content [data-link="create-new-account"]:hover {
    text-decoration: underline;
}

.or-login-options {
    color: #F2F2F2;
    font-weight: bold;
}

[data-button="google-signin-button"] {
    cursor: pointer;
    width: 250px;
}

.product-expert-image {
    width: 600px;
    border-radius: 0 10px 10px 0;
}

footer {
    position: absolute;
    width: 100%;
    bottom: 15px;
    text-align: center;
    color: white;
}

footer span {
    font-size: 1.2rem;
}

footer a {
    text-decoration: none;
    color: #2F63D9;
    font-size: inherit;
}

footer a:hover {
    text-decoration: underline;
}

.loader-wrapper {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0d0d0d85;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.loader-content {
    width: 100%;
    height: 100%;
    border: 25px solid #2F63D9;
    border-left: 25px solid #3C81F6;
    border-radius: 50%;
    animation: spin 900ms infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

[data-dropdown="youtube-search-options"] {
    position: absolute;
    z-index: 1;
    /* display: none; */
}

[data-dropdown="youtube-search-options"] span:is(.material-icons) {
    color: var(--color4);
}

[data-dropdown-content="youtube-search-options"] ul {
    list-style: none;
    background-color: var(--color2);
    text-align: center;
    border: 3px solid var(--color);
    border-radius: 10px;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
}

[data-dropdown-content="youtube-search-options"] .dropdown-title {
    font-size: 1.6rem;
    margin: 10px;
    color: var(--color4);
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: 3px underline var(--color4);
}

[data-dropdown-content="youtube-search-options"] li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-dropdown-content="youtube-search-options"] li p {
    font-size: 1.5rem;
    color: var(--color4);
    padding: 15px
}

[data-dropdown-content="youtube-search-options"] li:not(.dropdown-title):hover {
    background-color: var(--color3);
    cursor: pointer;
}

/**
 * 
 */