* {
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    margin: 0;
    background: #6a006a;
    color: #fff;
}

.wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 90px;
    background: #ff7a2f;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-btn {
    color: #fff;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
}

.menu {
    margin-top: 40px;
    writing-mode: vertical-rl;
    color: #fff;
}

/* Content */
.content {
    flex: 1;
    padding: 40px;
    background: #7b007b;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logos img {
    height: 40px;
}

.divider {
    width: 2px;
    height: 40px;
    background: #fff;
}

.guinness {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form */
.form-section {
    max-width: 900px;
    margin: auto;
}

.form-section h2 {
    text-align: right;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
}

/* Captcha */
.captcha {
    margin: 20px 0;
}

.check {
    background: #1f1f1f;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 4px;
    color: #4caf50;
}

/* Button */
.submit-btn {
    background: #e0009a;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    opacity: 0.8;
}
.btn-wrapper {
    display: flex;
    justify-content: flex-start;
    direction: ltr;
}

