/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,#FC354C, #0ABFBC);
}

/* Container and Login Box */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.login-box {
    background: rgba(255, 255, 255, .3);
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    height:400px;
}

    .login-box h2 {
        margin-bottom: 30px;
        color: #BE5869;
        font-size: 24px;
        font-weight: 600;
    }

/* Input Group */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

    .input-group label {
        display: block;
        margin-bottom: 5px;
        color: #555;
        font-size: 14px;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
        transition: border-color 0.3s;
    }

        .input-group input:focus {
            border-color: #007bff;
        }

    /* Button */
 /*   .input-group button {
        width: 100%;
        padding: 10px;
        background: #007bff;
        border: none;
        border-radius: 5px;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }*/

    .input-group button {
        border: none;
        outline: none;
        height: 40px;
        color: #fff;
        font-size: 14px;
        background: linear-gradient(45deg, #FC354C, #0ABFBC);
        cursor: pointer;
        border-radius: 20px;
        margin-top: 25px;
        width:100%;
    }

        .input-group button:hover {
            background: linear-gradient(45deg, #0ABFBC, #FC354C);
        }

/* Add Responsive Design */
@media (max-width: 480px) {
    .login-box {
        padding: 30px;
    }
}
