/* styles-desktop.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-image: url('your-desktop-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.landing-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    background-color: rgba(0, 0, 0, 1);
    padding: 60px;
    border-radius: 0px;
    text-align: center;
    color: #fff;
  
    width: 260px; 
    height:330px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.6);
}

.logo {
    max-width: 250px;
   
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="email"] {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 0px; /* Keeps the rounded corners consistent */
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.consent-text {
    display: flex;
    align-items: flex-start; /* Align items to the top (first line) */
    margin-top: 10px;
    justify-content: flex-start;
}

/* Styling the checkbox */
input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px; /* Optional: Fine-tune to match exact alignment with the label */
    width: auto;
}

/* Styling the label */
.consent-text label {
    font-size: 12px;
    color: rgb(177, 177, 177);
}

button {
    width: 100%; /* Full width, matching the input */
    padding: 10px;
    background-color: #f57c00; /* Button background color */
    color: white; /* Button text color */
    border: none; /* No border */
    border-radius: 0px; /* Rounded corners */
    cursor: pointer; /* Changes cursor to pointer on hover */
    box-sizing: border-box; /* Ensures padding is included in the width */
    margin-top: 20px;
};
}

button:hover {
    background-color: #e66000;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner button {
    background-color: #ff7300;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #e66000;
}
.referral-link {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center;
}

.referral-link input[type="text"] {
    width: 100%; /* Full width within the container */
    padding: 10px;
    margin-bottom: 10px; /* Adds space between input and button */
    border: 1px solid #ccc;
    border-radius: 0px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

.referral-link button {
    width: 100%; /* Matches input width */
    padding: 15px;
    font-size: 16px;
    background-color: #f57c00;
    color: #fff;
    border: none;
    cursor: pointer;
}

.referral-link button:hover {
    background-color: #e66000;
}
