@import
 url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
 
:root {
    --pink: #E6007E;
    --dark: #000000;
    --light: #ffffff;
    --gray: #1E1E1E;
}

@font-face {
  font-family: 'EuroStile';
  src: url('https://biggym.com/wp-content/themes/hello-elementor/assets/fonts/EurostileExtendedBlack.woff') format('truetype');
  font-weight: 400;
  font-style: normal;
}

html, body {
	padding:0;
    margin:0;
    width:100vw;
    height:100vh;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--light);
    font-family: "Montserrat", sans-serif;
    font-size:1rem;
}

textarea {
  font-size: 1rem;
  line-height: 1.4;
   -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

header {
    width: 100%;
    padding: 10px;
}

* {
    box-sizing: border-box;
}


.container {
    display: flex;
    min-height: 100vh;
}

.image-section {
    flex: 1;
    background: url("https://biggym.com/wp-content/themes/hello-elementor/assets/images/background.jpeg") center/cover no-repeat;
}

.content-section {
	width:100%;
    max-width:400px;
    margin:0 auto;
    flex: 1;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
}

.logo {
    color: var(--pink);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 40px;
}
h1 {
    font-size: 27px; 
    letter-spacing:-0.05em;
    margin: 0 0 10px;
    font-family: 'EuroStile';
}

h1 span {
    color: var(--pink);
    font-family: 'EuroStile';
    font-size: 38px;
}

h3 {
font-family: 'EuroStile';
font-weight:400;
text-transform: uppercase;
}

h3 span {
	color: var(--pink);
}

p {
    color: #ccc;
    max-width: 480px;
    margin-bottom: 40px;
    font-size:1rem;
}

p.bedankt-feedback {
	line-height:1.4rem;
}

p.groet {
font-size:.9rem;
font-style: italic;
}

.rating-label {
    color: var(--pink);
    font-weight: bold;
    font-family: "Eurostile", sans-serif;
}

.rating-label span {
	color: var(--light);
}

.stars {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star {
    user-select: none;
    font-size: 3.3rem;
    color: #444;
    cursor: pointer;
}

.star.used {
    color: #ff007f;
}

.feedback {
    margin-bottom: 30px;
}

.feedback p {
	margin-bottom:5px;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: none;
    resize: none;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

button {
    display: inline-flex;
    appearance: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    user-select: none;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
    outline: transparent solid 2px;
    outline-offset: 2px;
    line-height: 1.2;
    background: transparent;
    color: white;
    border: 2px solid var(--pink);
    border-radius: 0px 10px;
    font-family: "Eurostile", sans-serif;
    font-size:16px;
    padding: 10px 24px;
    opacity: 1;
    cursor: pointer;
    transition: 0.3s;
    display:none;
}

button:hover {
    background: var(--pink);
    transition: 0.3s;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .image-section {
        display: none;
    }

    .content-section {
        padding: 0 20px 40px 20px;
    }
}