body {
    font-family: 'Poppins', sans-serif;
}
.sign-in-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    background-color: white;
    border-radius: 20px;
    overflow: hidden; 
}

input {
    margin: 10px 0;
    padding: 10px;
    width: 80%; 
    border: 1px solid rgb(189, 187, 187);
    border-radius: 8px;
    font-size: 16px;
}

input::placeholder {
    color: #9ca3af;
}

input:focus {
    border-color: #010b1c; 
    outline: none;
}

form {
    width: 90%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box; 
}

button {
    padding: 12px;
    margin-top: 20px;
    width: 80%;
    background-color: #0d0d0d;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    border-style: none;
    cursor: pointer;
}

button:hover {
    background-color: #222;
    transition: background-color 0.3s ease;
}

.sign-in {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sign-in-other-div {
    display: none;
}

.sign-in-other-div img {
    width: 100%;
    object-fit: cover; 
    max-height: 500px; 
}
label{
    display: none;
}

@media (min-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f4f4f4;
        height: 100vh; 
        margin: 0;
    }
    .sign-in-container {
        width: 80%;
        border-radius: 30px;
    }
    .sign-in {
        width: 100%;
        display: flex;
        flex-direction: row;
    }
    form {
        width: 50%;
        padding: 30px;
    }
    .sign-in-other-div {
        display: block;
        width: 50%;
    }
    .sign-in-other-div img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}
