@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Poppins', 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 400;
}

body {
    min-width: 320px;
    max-width: 1280px;
    background-color: #121212;
    color: white;
    margin: auto;
    padding: 0;
}

#landingPage {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

#landingPage #logo {
    display: inline-block;
    margin-bottom: 2rem;
}

#landingPage #logo img {
    max-width: 320px;
    width: 80%;
    height: auto;
}

#landingPage h2 {
    font-size: 2.125rem;
    font-weight: 500;
    margin: 1.5rem 0;
    color: white;
}

#landingPage p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.87);
    margin: 1rem auto;
    max-width: 600px;
}

#landingPage ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 2rem 0;
}

#landingPage li {
    flex: 1;
}

#landingPage a {
    text-decoration: none;
    color: #D84315;
    transition: color 0.3s ease;
}

#landingPage a:hover {
    color: #efb3a1;
}

.error {
    color: #FF5722;
    padding: 0 8px 0 8px;
    margin: -25px 0 -20px 0;
}

.content-box, form {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    min-width: 360px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

form > * {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

form > span {
    text-align: left;
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

button {
    color: #ffffff;
    background-color: #D84315;
    border: none;
    margin: 2rem auto 0;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);
    padding: 10px 24px;
    font-size: 0.875rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 1.75;
    border-radius: 12px;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    cursor: pointer;
}

button:hover {
    background-color: #efb3a1;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}

button:active {
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2), 0px 8px 10px 1px rgba(0,0,0,0.14), 0px 3px 14px 2px rgba(0,0,0,0.12);
}

button:disabled,
button[disabled] {
    color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.12);
    cursor: not-allowed;
}

input {
    color: white;
    background-color: rgba(255, 255, 255, 0.09);
    cursor: text;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: normal;
    line-height: 1.5;
    margin: 0.5rem 0;
    padding: 12px 16px;
    text-transform: none;
    vertical-align: baseline;
    width: 100%;
    max-width: 100%;
    word-spacing: 0px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 12px;
    transition: all 0.3s ease;
}

input:hover {
    background-color: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.4);
}

input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.16);
    border-color: #D84315;
    box-shadow: 0 0 0 2px rgba(216, 67, 21, 0.2);
}

#password_match_info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #FFAB40;
    line-height: 1.5;
}

#landingPage a.btn-return {
    display: inline-block;
    color: #ffffff;
    background-color: #D84315;
    padding: 16px 48px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.02857em;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);
}

#landingPage a.btn-return:hover {
    background-color: #efb3a1;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
    #landingPage {
        padding: 1rem;
    }

    .content-box, form {
        padding: 1.5rem;
        margin: 1rem;
    }

    #landingPage h2 {
        font-size: 1.75rem;
    }

    .btn-return {
        padding: 12px 32px;
        font-size: 1rem;
    }
}
