* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
}

/* Background */
.auth-wrapper {
    height: 100vh;
    background-image: url("https://www.cubwear.co.uk/cdn/shop/files/CubwearFamilywithDog1500_9a9e9a69-f616-4ec9-b6bd-d0222703900d.jpg?v=1738243488");
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Container */
.auth-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/* Card */
.auth-card {
    width: 320px;
    padding: 35px 30px;
    background: rgba(10, 25, 55, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    color: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Headings */
.auth-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-card p {
    font-size: 13px;
    color: #d0d0d0;
    margin-bottom: 18px;
}

/* Inputs */
.auth-card input {
    width: 100%;
    height: 42px;
    margin-bottom: 14px;
    padding: 0 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 5px;
    color: white;
    font-size: 14px;
}

.auth-card input::placeholder {
    color: #e3e3e3;
}

/* Button */
.auth-card button {
    width: 100%;
    height: 42px;
    background-color: #1e3a8a;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 15px;
    margin-top: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-card button:hover {
    background-color: #2b55d4;
}

/* Bottom link */
.switch-text {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: #dcdcdc;
    text-align: center;
}

.switch-text a {
    color: #aac8ff;
    text-decoration: none;
}
