:root {}

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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    width: 100%;
    height: 100vh;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Prototype Links */
a.prototype-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

.background-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.play-button {
    position: absolute;
    top: 525px;
    left: 245px;
    width: 200px;
    height: 65px;
    border: 3px solid white;
    background-color: #00801e;
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 0 20px rgba(0, 128, 30, 0.35);
}

.play-button:hover {
    transform: scale(1.03);
    transition: transform 0.2s ease;
}

.play-button:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}

/* Logo links */
.logo {
    position: absolute;
    top: 105px;
    left: 95px;
    width: 520px;
    height: auto;
    z-index: 4;
}

.login-panel {
    width: 320px;
    padding: 36px 26px 28px;
    border: 2px solid #00aaff;
    border-radius: 0 0 18px 0;
    background: rgba(5, 10, 30, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.25);
    color: white;
    font-family: Arial, sans-serif;
}

.login-panel h2 {
    font-size: 42px;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.welcome-text {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #d9d9d9;
}

.login-panel form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-panel input[type="text"],
.login-panel input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.login-panel input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.password-wrapper {
    position: relative;
}

.password-wrapper .eye-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: white;
    opacity: 0.8;
    pointer-events: none;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #f2f2f2;
}

.remember-me input {
    accent-color: #b266ff;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    background: linear-gradient(90deg, #58ffb7, #009c1f, #22252d);
    transition: 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.forgot-password {
    text-align: center;
    font-size: 13px;
    color: white;
    text-decoration: none;
    margin-top: -4px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

.divider span {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.divider p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.social-login a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.signup-text {
    text-align: center;
    font-size: 14px;
    margin: 8px 0 4px;
    color: white;
}

.signup-text a {
    color: #7ce7ff;
    text-decoration: none;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.bottom-links a {
    font-size: 12px;
    color: #e8e8e8;
    text-decoration: none;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.start-screen {
    width: 100%;
    height: 100%;
}

.login-panel {
    position: absolute;
    top: 120px;
    right: 150px;
}

.help-button {
    position: absolute;
    top: 0px;
    right: 20px;
    display: inline-block;
    width: 120px;
    height: auto;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

.help-button img {
    width: 100%;
    height: auto;
    display: block;
}

.help-button:hover {
    transform: scale(1.08);
    transition: 0.2s;
}