.login-section {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid cyan;
    border-radius: 10px;
}

.login-form {
    background-color: rgba(255, 255, 255, 0.05);
   
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

.timeline-section {
    /* background-color: #1a1e23; */
    
    color: #fff;
    padding: 60px 0;
    /* display: none; */
}

.timeline-item {
    position: relative;
    padding: 30px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 30px;
    width: 12px;
    height: 12px;
    /* background: #ff2d55; */
    background: #00C9FF;
    border-radius: 50%;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.year-range {
    /* color: #ff2d55; */
    color: #00C9FF;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.rating {
    position: absolute;
    right: 20px;
    top: 20px;
    /* color: #ff2d55; */
    color:#FFA534;
}

.subtitle {
    color: #6c757d;
    font-size: 0.9rem;
}

.description {
    color: #a8adb3;
    margin-top: 15px;
}

.error-message {
    /* color: #ff2d55; */
    color: #00C9FF;
    display: none;
    margin-top: 10px;
}

/* .botom-broder{
    border-bottom: 2px solid #00C9FF;
    
} */