/* reset css */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
 }
 a {
	display: inline-block;
	text-decoration: none;
	color: inherit;
 }
 
 img {
	vertical-align: top;
 }
 
 ul li {
	list-style: none;
	padding-left: 0;
 }
 
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
	font-family: inherit;
	font-size: inherit;
 }
 
 html,
 body {
	block-size: 100%;
 }
 /* ______________________________________ */

/* Modal window */
.modal {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}
.modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	width: 300px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal input {
	width: 80%;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.modal button {
	width: 80%;
	padding: 10px;
	background-color: #1a4783;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.modal button:hover {
	background-color: #2575fc;
}

#bankApp {
	display: none;
 }

 body{
	background: #ffffff;
	background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(0, 161, 194, 1) 100%);
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
}

 .wrapper{
	width: 100%;
	max-width: 400px;
	margin: 50px auto;
	background-color: white;
	border-radius: 5%;
	padding: 30px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 h1{
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 32px;
	color: #1a4783;
	text-align: center;
 }

.balance__section{
	color: #1a4783;
	text-align: center;
	padding: 20px;
	font-size: 24px;
	font-weight: 700;
	border: 1px solid rgb(157, 155, 155);
	margin-bottom: 20px;
}

.input__section {
    margin-bottom: 20px;
	 display: flex;
	 gap: 30px; 
}

.output__section {
	 display: flex;
	 gap: 30px; 
}

.input__section input,
.output__section input,
.input__section button,
.output__section button {
	min-height: 44px; 
	font-size: 1rem;
}

 input{
	flex: 1;
	font-weight: 600;
	border: 1px solid #ccc;
	padding: 0 15px;
	color: #1a4783;
	text-align: center;
	transition: border-color 0.3s;
	border-radius: 4px;
 }

 input:focus {
	border-color: #1a4783;
	outline: none;
}

 button{
	padding: 10px 15px;	
	
	font-size: 0.5rem;
	font-weight: 500;
	
	background-color: #1a4783;
	color: white;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
 }
 
 button:hover {
	background-color: #2575fc;
 }

 #errorMessage{
	margin-top: 30px;
	color: red;
	text-align: center;
	font-size: 16px;
 }
