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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #262c35;
    color: #ffffff;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-panel {
    flex: 0 0 42%;
    padding: 3rem 4.5rem;
    display: flex;
    flex-direction: column;
}

.right-panel {
    flex: 1;
    background-color: #0b0e14;
    position: relative;
    border-left: 1px solid #1a1e24;
}

.right-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bicycle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.logo-container {
    margin-bottom: 5rem;
    max-width: 220px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.subtitle {
    color: #8c9bb0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-bar {
    background-color: #2f3641;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    min-width: 55px;
}

.progress-bar .value {
    font-size: 1.1rem;
    font-weight: 600;
}

.countdown-item .label {
    color: #6a798a;
    font-size: 0.7rem;
    margin-top: 6px;
    margin-left: 0;
    font-weight: 500;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.2rem;
    max-width: 250px;
}

.email-input {
    background-color: #3b4453;
    border: none;
    border-radius: 4px;
    padding: 9px 12px;
    color: white;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.email-input::placeholder {
    color: #92a0b2;
}

.notify-btn {
    background-color: #4dc2f8;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
}

.notify-btn:hover {
    background-color: #2faee6;
}

.thank-you {
    color: #8c9bb0;
    font-size: 0.8rem;
}
