body {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(50,50,50,1) 50%, rgba(0,0,0,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.wrapper {
    display: flex;
    width: 90%;
    max-width: 1100px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
}

#button_LoginReg {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

#button_LoginReg:hover {
    background: #218838;
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(40, 167, 69, 0.5);
}

#text_login {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.register-btn {
    background: transparent;
    border: 2px solid hsl(236, 97%, 46%);
    color: hsl(236, 97%, 46%);
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.register-btn:hover {
    background: hsl(236, 97%, 46%);
    color: white;
    transform: scale(1.05);
}
