/* Main Horoscope Box */

.jyotis-box {
    max-width: 650px;
    margin: 30px auto;
    padding: 35px 30px;
    background: linear-gradient(135deg, #3b0a67, #6512a8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    text-align: center;
    color: #ffffff;
}


/* Heading */

.jyotis-box h2 {
    color: #ffd45c;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}


/* Form */

.jyotis-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* Input Fields */

.jyotis-form input {
    width: 100%;
    padding: 15px 18px;
    border-radius: 12px;
    border: 2px solid #ffd45c;
    background: #ffffff;
    color: #333;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}


/* Input Focus */

.jyotis-form input:focus {
    border-color: #ffffff;
    box-shadow: 0 0 10px #ffd45c;
}


/* Button */

.jyotis-form button {

    margin-top: 10px;
    padding: 15px;

    background: linear-gradient(
        45deg,
        #ffb300,
        #ffd45c
    );

    color: #4b086f;

    border: none;
    border-radius: 30px;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}


/* Button Hover */

.jyotis-form button:hover {

    transform: translateY(-3px);

    box-shadow:
    0 8px 20px rgba(255,212,92,0.5);

}


/* Login Box */

.jyotis-login-box {

    max-width:500px;
    margin:40px auto;

    padding:30px;

    background:#3b0a67;

    color:white;

    text-align:center;

    border-radius:20px;

}


.jyotis-login-box h3 {

    color:#ffd45c;

}


.jyotis-login-box a {

    display:inline-block;

    margin-top:15px;

    padding:12px 30px;

    background:#ffd45c;

    color:#4b086f;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

}


/* Result Box */

#jyotis-result {

    margin-top:25px;

    padding:20px;

    background:white;

    color:#333;

    border-radius:15px;

    text-align:left;

}



/* Mobile Responsive */

@media(max-width:600px){

    .jyotis-box {

        padding:25px 15px;

        margin:20px 10px;

    }


    .jyotis-box h2 {

        font-size:25px;

    }


    .jyotis-form input {

        font-size:15px;

    }


}
#place-result{
    background:#fff;
    color:#333;
    border-radius:10px;
    margin-top:-10px;
    text-align:left;
    overflow:hidden;
}


.place-option{

    padding:10px;
    cursor:pointer;
    border-bottom:1px solid #ddd;

}


.place-option:hover{

    background:#ffd45c;

}