import { StyleSheet,Dimensions } from "react-native";
const width = Dimensions.get("window").width
export const paymentStyles = StyleSheet.create({
  main: {
    flex: 1,
    padding: 10,
  },
  heading: {
   
    fontSize: 25,
    textAlign:'center',
    fontWeight: "500",
  },
  textInput: {
    borderColor: "#e0e0e0",
    padding: 15,
    fontWeight: "400",
    fontSize: 14,
  },
  continueButton: {
    padding: 15,
    backgroundColor: "black",
    marginTop: 30,
    borderRadius: 8,
    alignItems: "center",
  },
  continueButtonText: {
    color: "white",
    fontSize: 15,
    fontWeight: "500",
  },
  backButtonStyle:{
    width: 70,
    backgroundColor: 'black',
    justifyContent: 'center',
    alignItems: 'center',
    padding: 6,
    borderRadius: 10,
    position:'absolute',
    left:0
  },
  headerViewStyle:{
    flex:1,
    flexDirection: 'row',
    justifyContent:'center',
    alignItems: 'center',
     marginBottom: 20,
    
  }
});
