@import url("main.css");

main{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 70px 0;
}

.container {
	background-color: var(--black-low);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: var(--shadow-black);
	width: 100%;
	max-width: 400px;
}

.app-title {
	text-align: center;
	color: var(--yellow);
	font-size: 2rem;
	letter-spacing: 2px;
}

.description{
	color: var(--white-low);
	margin-bottom: 1.5rem;
	text-align: center;
	font-size: 0.9rem;
}

.app-logo {
	width: 110px;
    background: var(--black-full);
    margin-left: 50%;
    margin-bottom: -65px;
    transform: translate(-50%, -75%);
    border-radius: 50%;
    border: 2px solid var(--black-line);
    box-shadow: var(--shadow-black);
}


.form {
	display: flex;
	flex-direction: column;
	/*gap: 1rem;*/
}

.form input {
	margin-bottom: 1rem;
	padding: 0.8rem;
	border: 1px solid var(--black-line);
	background-color: var(--black-high);
	color: var(--white);
	border-radius: 5px;
	transition: border 0.3s ease;
}

.form .input-group {
	position: relative;
	width: 100%;
	margin-bottom: 1rem;
}

.form .input-group input {
	width: 100%;
	margin: 0;
}

.form .input-group button {
	position: absolute;
	height: 100%;
	width: max-content;
	font-weight: 900;
	color: var(--black-full);
	right: 0;
	border: 1px solid var(--black-line);
	border-radius: 0 5px 5px 0;
	border-left: none;
	outline: none;
}

.form input:focus {
	border: 1px solid var(--blue);
	outline: none;
}

.form button {
	background-color: var(--yellow);
	border: none;
	color: var(--black-high);
	padding: 0.8rem;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
}

.form button:hover {
	background-color: var(--yellow-high);
}

.note {
	text-align: center;
	font-size: 0.9rem;
	color: var(--black-icon);
	margin-top: 10px;
}

.note a {
	color: var(--blue);
	text-decoration: none;
}

.note a:hover {
	text-decoration: underline;
}

.input-message{
	color: var(--yellow);
	margin-bottom: 10px;
	margin-top: -10px;
}