@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Poppins:400,500&display=swap');

* {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    box-sizing: border-box;
}
.bg-img {
    position: relative;
    background: url('bg.jpg') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
}

.content header {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.field {
    position: relative;
    margin-top: 20px;
}

.field input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.field span {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #bbb;
    font-size: 14px;
    cursor: pointer;
}

.field input[type="submit"] {
    background: #3498db;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    padding: 12px;
}

.field input[type="submit"]:hover {
    background: #2980b9;
}

.pass {
    text-align: left;
    margin: 10px 0;
}

.pass a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.pass a:hover {
    text-decoration: underline;
}

.login {
    color: #fff;
    font-size: 15px;
    margin-top: 30px;
}

.socials {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    height: 45px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.social-btn.facebook {
    background: #4267B2;
}

.social-btn.instagram {
    background: #E1306C;
}

.social-btn.facebook:hover {
    background: #365899;
}

.social-btn.instagram:hover {
    background: #c13584;
}

.signup {
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
}

.signup a {
    color: #3498db;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}