@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body {
    font-family: 'Open Sans', sans-serif;
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.background {
    background: url('../img/bg.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(5px);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.login-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    width: 400px;
    padding: 40px;
	margin-top:100px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

.login h1 {
    color: #333;
    margin-bottom: 20px;
}

input {
    width: 90%;
    margin-bottom: 20px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    outline: none;
    padding: 15px;
    font-size: 16px;
    color: #333;
    border-radius: 50px;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
}

input:focus {
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.4), 0 1px 1px rgba(255,255,255,0.2);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    background-color: #8dc63f;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #76a531;
}

.btn-block {
    width: 100%;
}

.error {
    color: red;
    margin-bottom: 20px;
}

.footer-text {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 767px) {
    .login-container {
        height: 100%;
        padding: 20px;
    }

    .login {
        width: 90%;
        padding: 20px;
        margin: 0 auto;
        box-shadow: none;
    }

    .logo {
        width: 80%;
        max-width: 150px;
        margin-bottom: 15px;
    }

    .form-control {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer-text {
        font-size: 12px;
        margin-top: 15px;
    }
}
