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

body {
    background-color: #111;
    color: white;
}

/* Logo */

.logo {

background-image: url(https://media.discordapp.net/attachments/1405737165492846622/1477828631144304690/image.png?ex=69a62eaa&is=69a4dd2a&hm=ae6bf797abe7e1a5493c3aafe670368d2afdd95388eb98a5c4d3108b0fc87c9c&=&format=webp&quality=lossless&width=1568&height=1520);
background-repeat: no-repeat;
background-size: contain;
width: 150px;
height: 150px;
}

/* Screen */

.screen {
width: 150;
height: 100;
background-color: #333;

}


/* Regular Fee Button */

.Reg {

width: 100;
background-color: yellow;

}

/* Discounted Fee Button */

.Dis {
width: 100;
background-color: greenyellow;

}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #1a1a1a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-buttons .book {
    margin-right: 15px;
    color: white;
    text-decoration: none;
}

.create-btn {
    background-color: #00bcd4;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

/* Hero Background */
.hero {
    height: 90vh;
    background: url("https://via.placeholder.com/1920x1080") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Image */

body {
      background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTum8Bv1VumDY5nP12sjkvp-4f-DAjPr-CkXw&s);
      background-size: cover;
      backdrop-filter: 5px;
      margin: 5px;
    }

/* Registration Card */
.registration-card {
    display: flex;
    width: 800px;
    background: rgba(0, 188, 212, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
}

/* Left Panel */
.center-panel {
    width: 40%;
    text-align: center;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    background-color: white;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 14px;
}



/* Right Panel */
.right-panel {
    width: 60%;
    padding-left: 20px;
}

.right-panel h1 {
    margin-bottom: 10px;
}

.instructions {
    font-size: 14px;
    margin-bottom: 15px;
}

form label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

form input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

.row {
    display: flex;
    gap: 10px;
}

.row div {
    flex: 1;
}

.terms {
    margin-top: 15px;
    font-size: 13px;
}

.submit-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background-color: #00bcd4;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.cancel-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background-color: #ccc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #1a1a1a;
    font-size: 14px;
}