
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    background-color: #000;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    position: relative;
    max-width: 100%;
   min-height: 100vh;
    background-color: black;
    overflow: hidden;
}

.header .img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.header .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.logo {
    position: relative;
    left: 3rem;
    bottom: 3rem;
    max-width: 350px;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.8));
}

.log-in {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    z-index: 2;

    height: 42px;
    width: 110px;

    background: linear-gradient(135deg, #e50914, #b20710);
    color: white;
    border: none;
    border-radius: 10px;

    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;

    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.4);
    transition: all 0.3s ease;
}

.log-in:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(229, 9, 20, 0.6);
}

.textoverlay {
    position: absolute;
    margin-top: 3rem;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    color: white;
}

.textoverlay #toptext {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.textoverlay span {
    font-size: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.textoverlay .subtext {
    margin-top: 1rem;
    font-size: 1.2rem;
    opacity: 0.75;
}

.create_account {
    margin-top: 1rem;
    z-index: 2;
    padding:15px 30px;
    max-width: 280px;

    background: linear-gradient(135deg, #e50914, #b20710);
    color: white;
    border: none;
    border-radius: 14px;

    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;

    cursor: pointer;
    box-shadow: 0 25px 60px rgba(229, 9, 20, 0.45);
    transition: all 0.3s ease;
}

.create_account:hover {
    box-shadow: 0 30px 80px rgba(229, 9, 20, 0.9);
}

