@import url("basic.css");

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #00152c 0%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 100px auto 0;
}

.img-show {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 50%
}

.img-show img {
    width: 70vh;
    height: 80vh;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lr-container {
    flex: 1;
    max-width: 400px;
    padding: 40px;
    background: rgba(37, 37, 37, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 50px;
}

.lr-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 123, 255, 0.5);
}

.lr-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lr-form input {
    width: 90%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.lr-form input:focus {
    outline: 2px solid #007BFF;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.lr-btn {
    width: 90%;
    padding: 12px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lr-btn:hover {
    background: #0056b3;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 7px 14px rgba(0, 123, 255, 0.4);
}

.lr-link {
    display: block;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    margin: 25px auto 0;
    padding: 0;
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;

}

.lr-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
}

.vc-container {
    display: flex;
    width: calc(90% + 30px);
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.vc-input {
    flex: 3;
    padding: 12px 15px;
    margin-right: 10px;
    margin-bottom: 0px !important;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
}

.vc-btn {
    flex: 1;
    padding: 0 5px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    height: 42px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .container {
        margin-top: 5vh;
    }
    
    .img-show {
        width: 50%;
        height: auto;
        margin: 0 auto;
    }

    .img-show img {
        width: 49vh;
        height: 56vh;
    }

    .lr-container {
        max-width: 40%;
        margin: 0 auto;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    body {
        align-items: center;
    }

    .container {
        margin-top: 15vh;
        height: 50%;
        justify-content: center;
    }

    .img-show {
        display: none;
    }
    
    .lr-container {
        margin: 0;
        position: relative;
        top: 0;
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        margin-top: 0vh;
        height: 30%;
        justify-content: center;
    }

    .lr-container {
        width: 95%;
        padding: 10px 80px;
    }

    .vc-container {
        width: calc(150% + 30px);
    }

    .lr-form input,
    .lr-btn {
        width: 150%;
    }
}