@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(../static/images/background.jpg);
    background-size: cover;
    background-position: center;

    /* background: linear-gradient(to bottom, rgba(25, 43, 128, .4) 0, rgba(25, 43, 128, .4) 100%), url(static\images\background.jpg); */
    margin: 0;
    /* background: linear-gradient(135deg, #f5f7fa, #c3cfe2); */
}

.container {
    /* background-color: #fff; */
    background-color: transparent;
    backdrop-filter: blur(40px);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 100%;
    border: solid white;
    padding: 20px 30px;
}

.container h1 {
    font-weight: 600;
    margin-bottom: 20px;
    /* color: #333; */
    color: #e1e1e1;
    text-align: center;
}

.container form {
    display: flex;
    flex-direction: column;
}

.container input {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 8px;
    /* width: 100%; */
    outline: none;
    transition: border-color 0.3s;
}

.container input:focus {
    /* border-color: #007bff; */
    border-color: #000000;
}

.container button {
    /* background-color: #007bff; */
    /* background-color: #000000; */
    background-color: #000000;
    color: #fff;
    font-size: 14px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.container button:hover {
    /* background-color: #0056b3; */
    background-color: #000000;
}

.container .social-icons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.container .social-icons a {
    margin: 0 10px;
    color: #555;
    font-size: 20px;
    transition: color 0.3s;
}

.container .social-icons a:hover {
    /* color: #007bff; */
    /* color: #000000; */
    color: #ffffff;
}

.container .error-message {
    color: red;
    margin-top: 10px;
    text-align: center;
}

.container a {
    /* color: #007bff; */
    /* color: #000000; */
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
    text-align: center;
}

.container a:hover {
    text-decoration: underline;
}

.flash-message {
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}


/* Add this to your existing CSS */

.change-bg-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e7ff7, #2d50ff);
    background: transparent;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, transform 0.3s;
}

.change-bg-btn:hover {
    background: linear-gradient(135deg, #2d50ff, #6e7ff7);
    transform: scale(1.1);
}

.change-bg-btn i {
    font-size: 24px;
}


.bxl-google:before{
    color: #ffffff;
}

.bxl-facebook:before{
    color: white;
}
.bxl-github:before{
    color: white;
}
.bxl-linkedin:before{
    color: white;
}