/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --main-color: #140335;
    --pink-color: #09052c;
    --white-alfa-25: rgba(255, 255, 255, 0.25);
    --white-alfa-40: rgba(255, 255, 255, 0.10);
    --backdrop-filter: blur(5px);
    --box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    --gradient: linear-gradient(109.6deg, rgb(64, 30, 216) 11.2%, rgb(28, 5, 92) 100.2%);
}
/* Logo in corner */
.logo {
    position: fixed; /* fixed in viewport */
    top: 20px;       /* distance from top */
    left: 20px;      /* distance from left */
    z-index: 100;    /* stay above other elements */
}

.logo img {
    width: 80px;    /* adjust size */
    height: auto;
    object-fit: contain;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05); /* subtle hover effect */
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background-image: url('../image/register1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Landing Page Container */
.landing-container {
    text-align: center;
    background: var(--white-alfa-25);
    border: 2px solid var(--white-alfa-40);
    backdrop-filter: var(--backdrop-filter);
    box-shadow: var(--box-shadow);
    border-radius: 15px;
    padding: 3rem 2rem;
    max-width: 450px;
    margin: auto;
}

.landing-container h1 {
    font-size: 2.2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.landing-container p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Button Group */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Base Button */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

/* Register Button */
.btn-primary {
    background: var(--gradient);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(109.6deg, rgb(51, 2, 116) 11.2%, rgb(34, 76, 214) 100.2%);
}

/* Login Button */
.btn-outline {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn-outline:hover {
    background: var(--main-color);
    color: #fff;
}
