body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.row {
    margin: 0;
}

.left-side {
    background-color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-side {
    background-color: #fff;
    border-left: 1px solid #f0f0f0;
    padding: 40px;
    border-radius: 0 10px 10px 0;
}

.register-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
}

.form-control {
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-register {
    background-color: #ff9800;
    border: none;
    padding: 12px;
    font-weight: 500;
}

.btn-register:hover {
    background-color: #f57c00;
}

.welcome-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.register-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.logo {
    max-height: 40px;
    margin-bottom: 20px;
}

.alert {
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-text {
    margin-left: 10px;
    color: #ff9800;
    font-weight: 600;
    font-size: 14px;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 500;
}
