﻿body {
    background: linear-gradient(135deg, #F58E4E, #ffcc80);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    background: rgb(255 220 185 / 95%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-section {
    flex: 1;
    padding: 20px;
    text-align: left;
}

    .info-section h2 {
        color: #F58E4E;
        font-size: 26px;
        font-weight: bold;
        font-family: auto;
    }

    .info-section p {
        font-size: 16px;
        margin-bottom: 10px;
        color: #444;
        font-family: serif;
    }

.playstore-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #F58E4E;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    font-family: auto;
}

    .playstore-link img {
        width: 30px;
        height: 30px;
    }

    .playstore-link:hover {
        transform: scale(1.1);
    }

.login-container {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.btn-login {
    background-color: #F58E4E;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 12px;
}

    .btn-login:hover {
        background-color: #e67e3c;
    }

@media (max-width: 768px) {
    body {
        background: #F58E4E;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: none;
        background: none;
    }

    .info-section {
        display: none;
    }

    .login-container {
        max-width: 100%;
    }
}
