﻿.wrapper {
    height: 70%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding-bottom: 15%;
}

.message {
    font-size: 1.6em;
    margin-bottom: 5%;
}

.input-section {
    display: flex;
    transition: 0.35s;
}

.device-input {
    border-radius: 500px;
    padding: 10px 20px;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    transition: inherit;
}

.device-input:focus {
    outline: none;
    box-shadow: 0px 0px 20px 0px rgba(255,255,255,0.75);
}

.arrow-button {
    border: none;
    background-color: transparent;
    background-image: url('../Images/green-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    margin-left: 10px;
    transition: inherit;
    cursor: pointer;
}

.arrow-button:focus {
    outline: none;
    width: 50px;
    margin-left: 10px;
    transition: inherit;
}

.arrow-button-disabled {
    filter: brightness(0.5);
    cursor: default;
}
