// styles.js
import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
padding: 16,
},
heading: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 20,
color: '#228B22',
},
input: {
height: 40,
width: '100%',
borderColor: '#228B22',
borderWidth: 1,
marginBottom: 20,
paddingLeft: 10,
},
button: {
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#228B22',
padding: 10,
borderRadius: 5,
},
buttonText: {
color: 'white',
marginLeft: 10,
},
video: {
width: 300,
height: 300,
},
});